mirror of
https://github.com/discourse/discourse.git
synced 2025-03-02 09:19:22 +00:00
6 lines
142 B
Ruby
6 lines
142 B
Ruby
|
class AddIndexToReviewableHistories < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_index :reviewable_histories, :created_by_id
|
||
|
end
|
||
|
end
|