summaryrefslogtreecommitdiffstats
path: root/db/migrate/20091017213113_add_missing_indexes_to_enumerations.rb
blob: e97b993dab648497235c67ce6d4544c62a31af45 (plain)
1
2
3
4
5
6
7
8
9
class AddMissingIndexesToEnumerations < ActiveRecord::Migration[4.2]
  def self.up
    add_index :enumerations, [:id, :type]
  end

  def self.down
    remove_index :enumerations, :column => [:id, :type]
  end
end