diff options
author | Matthew Lemon <y@yulqen.org> | 2024-11-11 16:19:44 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-11-11 16:19:44 +0000 |
commit | 97201e0bca203b6b303789374ffd7e4228e062a7 (patch) | |
tree | 1d70b0c499c514ceccd906b6b6e85dcbacbd3f45 /db/migrate/20241111160537_create_users.rb |
initial after migration
Diffstat (limited to 'db/migrate/20241111160537_create_users.rb')
-rw-r--r-- | db/migrate/20241111160537_create_users.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20241111160537_create_users.rb b/db/migrate/20241111160537_create_users.rb new file mode 100644 index 0000000..e7ef626 --- /dev/null +++ b/db/migrate/20241111160537_create_users.rb @@ -0,0 +1,13 @@ +class CreateUsers < ActiveRecord::Migration[8.0] + def change + create_table :users do |t| + t.string :first_name, null: false + t.string :last_name, null: false + t.string :email_address, null: false + t.string :password_digest, null: false + + t.timestamps + end + add_index :users, :email_address, unique: true + end +end |