Create model for users with email and password

This commit is contained in:
ricola 2025-04-06 17:04:31 -06:00
parent d6500e013d
commit 6682c8c300
6 changed files with 72 additions and 14 deletions

View file

@ -0,0 +1,9 @@
class CreateUsers < ActiveRecord::Migration[7.2]
def change
create_table :users do |t|
t.string :email
t.string :password
t.timestamps
end
end
end