Rails 3 - 如何通过数据库模式更新我的迁移
我更新了我的数据库架构,我需要通过此架构更新迁移。 是否有任何优雅的方法可以做到这一点,或者我必须手动更新我的迁移?
谢谢
I updated my DB schema a I would need to update a migrations by this schema.
Exist any elegant way to do it or I have to update my migrations manually?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不会从
schema.rb
文件生成迁移。相反,请使用rails生成迁移
,或将它们生成为模型的一部分。You don't generate migrations from the
schema.rb
file. Instead, userails generate migration
, or generate them as part of your models.