mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 12:26:37 +08:00
7 lines
184 B
Ruby
7 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
|