1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-24 06:26:52 +00:00
mastodon/db/migrate/20160325130944_add_admin_to_users.rb
Eugen Rochko e24bfbde1a Fixing FanOutOnWriteService, fixing Sidekiq not having enough DB connections
in the pool, adding a throttle of 60rpm per IP, adding mini profiler, adding
admin status to users
2016-03-25 14:12:24 +01:00

5 lines
127 B
Ruby

class AddAdminToUsers < ActiveRecord::Migration
def change
add_column :users, :admin, :boolean, default: false
end
end