mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
9 lines
258 B
Ruby
9 lines
258 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddStaffIndexToUsers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :users, [:id], name: "idx_users_admin", where: "admin"
|
|
add_index :users, [:id], name: "idx_users_moderator", where: "moderator"
|
|
end
|
|
end
|