mirror of
https://github.com/redmine/redmine.git
synced 2025-11-03 03:46:19 +01:00
10 lines
170 B
Ruby
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
|