Redmine/db/migrate/20091017214308_add_missing_...

10 lines
170 B
Ruby

class AddMissingIndexesToNews < ActiveRecord::Migration
def self.up
add_index :news, :author_id
end
def self.down
remove_index :news, :author_id
end
end