mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 12:38:02 +08:00
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
|