1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-27 22:38:42 +09:00
YuruToot/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