chinwagsocial/db/migrate/20181203003808_create_accounts_tags_join_table.rb
2018-12-06 17:36:11 +01:00

9 lines
230 B
Ruby

class CreateAccountsTagsJoinTable < ActiveRecord::Migration[5.2]
def change
create_join_table :accounts, :tags do |t|
t.index [:account_id, :tag_id]
t.index [:tag_id, :account_id], unique: true
end
end
end