Ruby on Rails:迁移:如何将表合并到新表中?
我有两张桌子 附件:
name, doc_name, doc_type, doc_size, cat
和媒体:
name, doc_name, doc_type, doc_size, cat
如何编写迁移文件,以便它获取两个表中的所有条目并将它们放入新的 Files
表中?
i have two tables
attachments:
name, doc_name, doc_type, doc_size, cat
and media:
name, doc_name, doc_type, doc_size, cat
how do I write a migration file such that it takes all the entries from both tables and puts them into a new Files
table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我主要使用 SQL 来完成此任务。对您的数据类型做出一些假设:
I would accomplish this primarily with SQL. Making some assumptions about your data types:
我知道 SQL 可以做到这一点。
未经测试但应该可以工作。
I know the SQL to do it.
Not tested but should work.