mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 11:58:27 +00:00
Also includes a refactor to TopicView's serializer which was not building our attributes using serializers properly.
6 lines
156 B
Ruby
6 lines
156 B
Ruby
class AddCreatedByIndexToReviewables < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_index :reviewables, [:topic_id, :status, :created_by_id]
|
|
end
|
|
end
|