10 lines
211 B
Ruby
10 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
|