mirror of
https://github.com/redmine/redmine.git
synced 2025-11-08 14:26:04 +01:00
10 lines
188 B
Ruby
10 lines
188 B
Ruby
|
|
class AddMissingIndexesToBoards < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
add_index :boards, :last_message_id
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
remove_index :boards, :last_message_id
|
||
|
|
end
|
||
|
|
end
|