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
|