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
|