bigdir/db/migrate/20091017214519_add_missing_...

10 lines
208 B
Ruby
Raw Normal View History

2013-08-01 10:33:49 +08:00
class AddMissingIndexesToCustomValues < ActiveRecord::Migration
def self.up
add_index :custom_values, :custom_field_id
end
def self.down
remove_index :custom_values, :custom_field_id
end
end