9 lines
211 B
Ruby
9 lines
211 B
Ruby
class AddMissingIndexesToCustomFields < ActiveRecord::Migration
|
|
def self.up
|
|
add_index :custom_fields, [:id, :type]
|
|
end
|
|
|
|
def self.down
|
|
remove_index :custom_fields, :column => [:id, :type]
|
|
end
|
|
end
|