将数据模型移植到 Rails 迁移的最简单方法
我设计了一个几乎有 24 个表的数据模型。我已经完成了关系的指定,并且所有数据类型都已确定。现在,我想将其转换为 Rails 中的迁移。
我已准备好在 MySQL 中创建它的所有脚本。是否有任何工具可以将所有表创建查询转换为单个 Rails 迁移文件?
谢谢
I have designed a data model which has almost 24 tables. I have finished specifying the relations and all the data types are finalized. Now, I want to convert it to migrations in Rails.
I have all the scripts ready for it to be created in MySQL. Is there any tool that converts all the table creation queries into a single Rails migration file?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己没有这样做过,但根据 ruby 论坛上的这篇文章
应该是足够了(事先删除schema.rb)。
SO 上几乎相同的问题: Ruby / Rails - 反向迁移 - DDL Ruby 代码
I haven't done it myself but according to this post on the ruby forums
should be sufficient (delete the schema.rb beforehand).
The almost same question here on SO: Ruby / Rails - Reverse Migration - DDL to Ruby Code