2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00
discourse/db/migrate/20120803191426_add_admin_flag_to_users.rb

9 lines
366 B
Ruby

class AddAdminFlagToUsers < ActiveRecord::Migration[4.2]
def change
add_column :users, :admin, :boolean, default: false, null: false
add_column :users, :moderator, :boolean, default: false, null: false
# Make all of us admins
execute "UPDATE users SET admin = TRUE where lower(username) in ('eviltrout', 'codinghorror', 'sam', 'hanzo')"
end
end