mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 19:38:24 +00:00
8 lines
184 B
Ruby
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
|