discourse/db/migrate/20190412161430_add_created_...

8 lines
187 B
Ruby

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