mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:51:03 +08:00
1343d40558
- add missing index to user actions for fast retrieval by post - add missing indexes to users for fast retrieval of staff - only refresh topic_users liked/bookmarked cache for affected users
7 lines
222 B
Ruby
7 lines
222 B
Ruby
class AddStaffIndexToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_index :users, [:id], name: 'idx_users_admin', where: 'admin'
|
|
add_index :users, [:id], name: 'idx_users_moderator', where: 'moderator'
|
|
end
|
|
end
|