blob: 85dedf816bedbc9fbbc4e7ba1edaf7167ad1779f (
plain)
1
2
3
4
5
6
7
8
9
|
class AddMissingIndexesToEnumerations < ActiveRecord::Migration
def self.up
add_index :enumerations, [:id, :type]
end
def self.down
remove_index :enumerations, :column => [:id, :type]
end
end
|