编辑 Rails 脚手架类以添加新字段
我使用脚手架函数生成了一个简单的 Rails 3 类:
rails generate scaffold Fattura data:date importo:integer descrizione:text
现在我需要在类 Fattura
中添加另一个字段。最好的方法是什么?
I've generated a simple Rails 3 class using the scaffold function:
rails generate scaffold Fattura data:date importo:integer descrizione:text
Now I need to add another field in the class Fattura
. What is the best way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个添加列的迁移:
You can create a migration which adds a column: