diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20230222010138_create_user_accounts.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20230222010138_create_user_accounts.rb b/db/migrate/20230222010138_create_user_accounts.rb new file mode 100644 index 0000000..0219276 --- /dev/null +++ b/db/migrate/20230222010138_create_user_accounts.rb @@ -0,0 +1,13 @@ +class CreateUserAccounts < ActiveRecord::Migration[7.0] + def change + create_table :user_accounts do |t| + t.string :email + t.string :password_digest + t.string :first_name + t.string :last_name + t.string :session_key + + t.timestamps + end + end +end |