Rake 与我的数据库不同步
我继承了一个Ruby on Rails项目,其中程序员没有使用rake来创建数据库模式,所以看起来非常不同步,有没有办法纠正这个问题?
I have inherited a Ruby on Rails project where the programmer didn't use rake to create the db schema, so it seems very out of synch, is there a way to rectify this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先创建一个 schema.rb 文件
rake db:schema:dump
然后对其进行迁移。
您可能还需要创建 schema_migrations 表,并手动向其中添加此迁移的时间戳。
First create a schema.rb file
rake db:schema:dump
Then make a migration ot of it.
You might also need to create the schema_migrations table, and manually add the timestamp for this migration to it.