This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-06-05 02:43:02 +02:00
|
|
|
class AddAdminToUsers < ActiveRecord::Migration[4.2]
|
2016-03-25 14:12:24 +01:00
|
|
|
def change
|
|
|
|
add_column :users, :admin, :boolean, default: false
|
|
|
|
end
|
|
|
|
end
|