git-svn-id: http://svn.redmine.org/redmine/trunk@17997 e93f8b46-1217-0410-a6f0-8f06a7374b81
12 lines
281 B
Ruby
12 lines
281 B
Ruby
class AddMissingIndexesToTimeEntries < ActiveRecord::Migration[4.2]
|
|
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
|