20091017212938_add_missing_indexes_to_repositories.rb
9 lines
| 196 B
| text/x-ruby
|
RubyLexer
|
r2814 | class AddMissingIndexesToRepositories < ActiveRecord::Migration | ||
def self.up | ||||
add_index :repositories, :project_id | ||||
end | ||||
def self.down | ||||
remove_index :repositories, :project_id | ||||
end | ||||
end | ||||