最佳答案
我已经查看了许多 SO
和 google
的职位生成连接表的移植为 has many and belongs to many
关联,没有工作。
所有的解决方案都会生成一个空的迁移文件。
我使用的是 rails 3.2.13
,我有两个表: security_users
和 assignments
:
rails generate migration assignments_security_users
rails generate migration create_assignments_security_users
rails generate migration create_assignments_security_users_join_table
rails g migration create_join_table :products, :categories (following the official documentation)
rails generate migration security_users_assignments security_user:belongs_to assignments:belongs_to
有人知道如何在两个表之间创建联接表迁移吗?