1
0
şunun yansıması https://github.com/redmine/redmine.git eşitlendi 2024-07-27 07:37:45 +02:00
redmine/db/migrate/20091017214236_add_missing_indexes_to_time_entries.rb

12 satır
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