about summary refs log tree commit diff
path: root/db/migrate/20161105130633_create_statuses_tags_join_table.rb
blob: 8a436c6ea0e65d44a438f4bf93704fd053703b38 (plain) (blame)
1
2
3
4
5
6
7
8
class CreateStatusesTagsJoinTable < ActiveRecord::Migration[5.0]
  def change
    create_join_table :statuses, :tags do |t|
      t.index :tag_id
      t.index [:tag_id, :status_id], unique: true
    end
  end
end