1
0
miroir de https://github.com/redmine/redmine.git synchronisé 2024-08-26 05:57:38 +02:00
redmine/db/migrate/20091017214308_add_missing_indexes_to_news.rb

10 lignes
170 B
Ruby
Brut Vue normale Historique

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