-1
我有2種型號:如何創建一個1關聯和遷移:很多
Department
has_many :accounts
Account
belongs_to :department
但我需要以某種方式創建一個具有表:
departments_accounts
department_id
account_id
這不是一個多對多的表雖然是嗎?由於一個部門可以有多個帳戶,但不是相反。
我應該如何創建一個使用遷移來設置新表的遷移?