mastodon/db/migrate/20181203003808_create_accou...

11 lines
261 B
Ruby

# frozen_string_literal: true
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