discourse/db/migrate/20190412161430_add_created_...

8 lines
184 B
Ruby

# frozen_string_literal: true
class AddCreatedByIndexToReviewables < ActiveRecord::Migration[5.2]
def change
add_index :reviewables, %i[topic_id status created_by_id]
end
end