20091017213113_add_missing_indexes_to_enumerations.rb
9 lines
| 209 B
| text/x-ruby
|
RubyLexer
|
r2814 | class AddMissingIndexesToEnumerations < ActiveRecord::Migration | ||
def self.up | ||||
add_index :enumerations, [:id, :type] | ||||
end | ||||
def self.down | ||||
remove_index :enumerations, :column => [:id, :type] | ||||
end | ||||
end | ||||