10 lines
232 B
Ruby
10 lines
232 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveEventIndices < ActiveRecord::Migration[4.2]
|
|
def change
|
|
remove_index :events, %i[user_type user_id]
|
|
remove_index :events, :exercise_id
|
|
remove_index :events, :file_id
|
|
end
|
|
end
|