如何将 db:schema diff 导入到 Rails 数据库中?
我知道应该使用迁移,只是询问。能够在本地 mysql 数据库上添加字段、索引等将是有用/美丽的。 然后
- schema dump
- git push heroku ...
- heroku db:schema:diff:apply <- !!!在不丢失远程数据的情况下,
我知道
- 无法处理表/字段重命名情况,
- 这是蝙蝠巴比特,
我真的很喜欢使用像 SQLyog 这样优秀的数据库管理器,为什么我不能呢?如果我不得不手动编写迁移文件中的每个更改,我就无法做到这一点。
这可能吗?有类似的插件吗?
PS:我知道这个美丽:
这正是我正在寻找的。问题是它适用于旧导轨,不再支持,
谢谢
i know that is should use migrations, just asking. it would be useful/beautiful to be able work on local mysql database adding fields, indexes etc.
and then
- schema dump
- git push heroku ...
- heroku db:schema:diff:apply <- !!! without loosing remote data
i know
- can't haddle table/fields rename case
- this is bat babbit
i really like to use great db managers like SQLyog, why can't I? I can't if i hawe to write every change in migration file by hand.
is this possible? is there similar plugin?
ps: i know about this beauty:
this is exactly what I'm looking for. Problem is that it is for old rails, and not suported anymore
thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个就是它!作者的话炸药!
处理
打包以与 schema-auto.rb 一起使用而不是与 schema.rb 一起使用,
太棒了!
this is it! by author words dynamite!
handles
pached to work with schema-auto.rb and not schema.rb
great!