blob: 23b6e5e4f50a1b7fbf9b4c7f0335a2c475079613 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddMissingIndexesToCustomFieldsTrackers < ActiveRecord::Migration[4.2]
def self.up
add_index :custom_fields_trackers, [:custom_field_id, :tracker_id]
end
def self.down
remove_index :custom_fields_trackers, :column => [:custom_field_id, :tracker_id]
end
end
|