mirror of
https://github.com/redmine/redmine.git
synced 2025-10-29 09:16:23 +01:00
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
|