summaryrefslogtreecommitdiff
path: root/db/migrate/20230222012901_add_role_to_user_account.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20230222012901_add_role_to_user_account.rb')
-rw-r--r--db/migrate/20230222012901_add_role_to_user_account.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/20230222012901_add_role_to_user_account.rb b/db/migrate/20230222012901_add_role_to_user_account.rb
new file mode 100644
index 0000000..9e234a5
--- /dev/null
+++ b/db/migrate/20230222012901_add_role_to_user_account.rb
@@ -0,0 +1,8 @@
+# frozen_string_literal: true
+
+# Add the role column to the user account table.
+class AddRoleToUserAccount < ActiveRecord::Migration[7.0]
+ def change
+ add_column :user_accounts, :role, :string
+ end
+end