如何添加新参数
How to add a new Parameter
我还在学习 ruby rails。
我的第一个站点是 运行ning,但现在我遇到了这个问题:
我运行railsgenerate scaffold staat name:string hauptstadt:string einwohner:integer sprache:string
为 staat 添加像 "test:string" 这样的参数的最佳方法是什么?
假设您要向数据库中添加另一列,只需 运行:
rails g migration add_test_to_staats test:string
这将在 db/migrate
下创建一个迁移文件
打开它以确保它是您想要的。
运行 bundle exec rake db:migrate
我还建议您阅读进一步解释这一点的文档,这里是 link:
我还在学习 ruby rails。
我的第一个站点是 运行ning,但现在我遇到了这个问题:
我运行railsgenerate scaffold staat name:string hauptstadt:string einwohner:integer sprache:string
为 staat 添加像 "test:string" 这样的参数的最佳方法是什么?
假设您要向数据库中添加另一列,只需 运行:
rails g migration add_test_to_staats test:string
这将在 db/migrate
下创建一个迁移文件打开它以确保它是您想要的。
运行 bundle exec rake db:migrate
我还建议您阅读进一步解释这一点的文档,这里是 link: