Sha256: 19e237e06214089211e79fb012b14cdb600d66d6c5eb2c96015a049b1a7a35cb
Contents?: true
Size: 351 Bytes
Versions: 34
Compression:
Stored size: 351 Bytes
Contents
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
Version data entries
34 entries across 34 versions & 1 rubygems