mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 03:48:23 +00:00
Includes support for flags, reviewable users and queued posts, with REST API backwards compatibility. Co-Authored-By: romanrizzi <romanalejandro@gmail.com> Co-Authored-By: jjaffeux <j.jaffeux@gmail.com>
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
|