ruby on rails:如何为新模型创建表

前端之家收集整理的这篇文章主要介绍了ruby on rails:如何为新模型创建表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我用
rails generate model mynewmodel string:name string:description

生成一个新的模型.如何将这个新模型部署到我的开发数据库?我已经在我的sqlite数据库中有一堆数据库.

我努力了

rake db:migrate

在db中生成这个新表似乎有麻烦.

更新:添加错误消息

==  CreateMynewmodels: migrating ===============================================
-- create_table(:mynewmodels)
rake aborted!
An error has occurred,this and all later migrations canceled:

undefined method `name' for #<ActiveRecord::ConnectionAdapters::TableDefinition:0x3ad5c50>

Tasks: TOP => db:migrate

谢谢

解决方法

字段名:类型组合的顺序不正确.尝试
rails generate model mynewmodel name:string description:string
原文链接:https://www.f2er.com/ruby/266755.html

猜你在找的Ruby相关文章