blob: 13fa0137e21968c7ccbe35e8e1c3e73f436ba44c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class AddMissingIndexesToWorkflows < ActiveRecord::Migration
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
|