mirror of
https://github.com/redmine/redmine.git
synced 2025-11-03 20:06:24 +01:00
12 lines
276 B
Ruby
12 lines
276 B
Ruby
|
|
class AddMissingIndexesToTimeEntries < ActiveRecord::Migration
|
||
|
|
def self.up
|
||
|
|
add_index :time_entries, :activity_id
|
||
|
|
add_index :time_entries, :user_id
|
||
|
|
end
|
||
|
|
|
||
|
|
def self.down
|
||
|
|
remove_index :time_entries, :activity_id
|
||
|
|
remove_index :time_entries, :user_id
|
||
|
|
end
|
||
|
|
end
|