12 lines
397 B
Ruby
12 lines
397 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|