about summary refs log tree commit diff
path: root/db/migrate/20170424112722_add_status_id_index_to_statuses_tags.rb
blob: d1db8cc629d63b93841c9c6c05134413995c2677 (plain) (blame)
1
2
3
4
5
class AddStatusIdIndexToStatusesTags < ActiveRecord::Migration[5.0]
  def change
    add_index :statuses_tags, :status_id
  end
end