##// END OF EJS Templates
Extract generic formatting options to an helper....
Extract generic formatting options to an helper. git-svn-id: http://svn.redmine.org/redmine/trunk@12319 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2814:70118fb136b1
r12087:8578a46b357f
Show More
20091017213536_add_missing_indexes_to_changesets.rb
11 lines | 271 B | text/x-ruby | RubyLexer
/ db / migrate / 20091017213536_add_missing_indexes_to_changesets.rb
class AddMissingIndexesToChangesets < ActiveRecord::Migration
def self.up
add_index :changesets, :user_id
add_index :changesets, :repository_id
end
def self.down
remove_index :changesets, :user_id
remove_index :changesets, :repository_id
end
end