blob: bf84c4f032a8006be3c3f440111e0646d05cd3b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class AddMissingIndexesToWorkflows < ActiveRecord::Migration[4.2]
def self.up
add_index :workflows, :old_status_id
add_index :workflows, :role_id
add_index :workflows, :new_status_id
end
def self.down
remove_index :workflows, :old_status_id
remove_index :workflows, :role_id
remove_index :workflows, :new_status_id
end
end
|