1
0
şunun yansıması https://github.com/redmine/redmine.git eşitlendi 2024-08-08 14:11:04 +02:00
redmine/db/migrate/20100313171051_add_index_on_issues_nested_set.rb

10 satır
200 B
Ruby
Ham Normal Görünüm Geçmiş

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