您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

20091017212227_add_missing_indexes_to_workflows.rb 356B

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