about summary refs log tree commit diff
path: root/db/migrate/20160325130944_add_admin_to_users.rb
blob: b0cd35e0082bba134a7cbefccd086f2d9fd2f38d (plain) (blame)
1
2
3
4
5
class AddAdminToUsers < ActiveRecord::Migration[4.2]
  def change
    add_column :users, :admin, :boolean, default: false
  end
end