DataMapper 将数据从一个表迁移到另一个表。
如果我使用 DataMapper,并且有两个数据库,是否有任何方法使用 migration.rb 将表(例如表 person)从数据库 1 复制到数据库 2? (相同的架构和表值)。
参考这个:https://github.com/datamapper/dm-migrations/blob/master/examples/sample_migration.rb
它只告诉我如何添加/修改/删除表。
感谢您的帮助。
If I am using DataMapper, and I have two databases, is there any way using migration.rb to copy a table for example table person from database 1 to database 2? (same schema and table values).
Referring this:https://github.com/datamapper/dm-migrations/blob/master/examples/sample_migration.rb
It only tells me how to add/modify/drop tables.
Thanks for help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不认为这是 dm-migrations 的意图。我相信最简单的方法是这样的:
编辑
事后看来,我不确定您是否询问如何复制表结构而不是表数据。这显然是在复制表数据。
I don't think that's the intention of dm-migrations. I believe the easiest way would be something like this:
Edit
In hindsight, I'm not sure if you were asking how to to copy table structure as to opposed to table data. This is obviously copying table data.