summaryrefslogtreecommitdiff
path: root/db/migrate/20241227180909_create_users.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20241227180909_create_users.rb')
-rw-r--r--db/migrate/20241227180909_create_users.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20241227180909_create_users.rb b/db/migrate/20241227180909_create_users.rb
new file mode 100644
index 0000000..2075edf
--- /dev/null
+++ b/db/migrate/20241227180909_create_users.rb
@@ -0,0 +1,11 @@
+class CreateUsers < ActiveRecord::Migration[8.0]
+ def change
+ create_table :users do |t|
+ t.string :email_address, null: false
+ t.string :password_digest, null: false
+
+ t.timestamps
+ end
+ add_index :users, :email_address, unique: true
+ end
+end
Copyright 2019--2025 Marius PETER