diff options
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20241111160537_create_users.rb | 13 | ||||
-rw-r--r-- | db/migrate/20241111160538_create_sessions.rb | 11 |
2 files changed, 24 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 diff --git a/db/migrate/20241111160538_create_sessions.rb b/db/migrate/20241111160538_create_sessions.rb new file mode 100644 index 0000000..8102f13 --- /dev/null +++ b/db/migrate/20241111160538_create_sessions.rb @@ -0,0 +1,11 @@ +class CreateSessions < ActiveRecord::Migration[8.0] + def change + create_table :sessions do |t| + t.references :user, null: false, foreign_key: true + t.string :ip_address + t.string :user_agent + + t.timestamps + end + end +end |