blob: 235f1e6ed703a9e83892782ab13ab4086f2c9782 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddMissingIndexesToCustomFieldsProjects < ActiveRecord::Migration[4.2]
def self.up
add_index :custom_fields_projects, [:custom_field_id, :project_id]
end
def self.down
remove_index :custom_fields_projects, :column => [:custom_field_id, :project_id]
end
end
|