suitepro/db/migrate/20100313171051_add_index_on_issues_nested_set.rb
2020-11-22 21:20:06 +01:00

9 lines
205 B
Ruby

class AddIndexOnIssuesNestedSet < ActiveRecord::Migration[4.2]
def self.up
add_index :issues, [:root_id, :lft, :rgt]
end
def self.down
remove_index :issues, [:root_id, :lft, :rgt]
end
end