1
0
mirror of https://github.com/mastodon/mastodon synced 2024-11-24 07:06:18 +09:00
mastodon/db/migrate/20160325130944_add_admin_to_users.rb

6 lines
127 B
Ruby
Raw Normal View History

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