diff options
author | Matthew Lemon <y@yulqen.org> | 2024-11-11 21:09:06 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-11-11 21:09:06 +0000 |
commit | 634cf4ee06a4820eaa2431a272b9a223118cf884 (patch) | |
tree | 2e49854aa28062c9c68fdbe0e554459469098d61 /db/migrate/20241111204736_add_is_admin_to_user.rb | |
parent | b4acbcadc7b4f73efe0580be2dd3cf1dbe342682 (diff) |
Adds is_admin to the User model and ensures only admin users can add new resource
Diffstat (limited to 'db/migrate/20241111204736_add_is_admin_to_user.rb')
-rw-r--r-- | db/migrate/20241111204736_add_is_admin_to_user.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20241111204736_add_is_admin_to_user.rb b/db/migrate/20241111204736_add_is_admin_to_user.rb new file mode 100644 index 0000000..a055513 --- /dev/null +++ b/db/migrate/20241111204736_add_is_admin_to_user.rb @@ -0,0 +1,5 @@ +class AddIsAdminToUser < ActiveRecord::Migration[8.0] + def change + add_column :users, :is_admin, :boolean, default: false + end +end |