Commit 1ebb78e4 authored by Eric Davis's avatar Eric Davis

Added some database indexes to commonly queried fields.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3206 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 7955e1eb
class AddLftAndRgtIndexesToProjects < ActiveRecord::Migration
def self.up
add_index :projects, :lft
add_index :projects, :rgt
end
def self.down
remove_index :projects, :lft
remove_index :projects, :rgt
end
end
class AddIndexToSettingsName < ActiveRecord::Migration
def self.up
add_index :settings, :name
end
def self.down
remove_index :settings, :name
end
end
class AddIndexesToIssueStatus < ActiveRecord::Migration
def self.up
add_index :issue_statuses, :position
add_index :issue_statuses, :is_closed
add_index :issue_statuses, :is_default
end
def self.down
remove_index :issue_statuses, :position
remove_index :issue_statuses, :is_closed
remove_index :issue_statuses, :is_default
end
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment