basic register

This commit is contained in:
Matteo Rosati
2026-01-26 00:36:05 +01:00
parent 54141eb91a
commit 4b93f0c7f7
12 changed files with 217 additions and 44 deletions

View File

@@ -8,8 +8,8 @@ datasource db {
}
model User {
id Int @id @default(autoincrement())
email String @unique
name String?
password String
id Int @id @default(autoincrement())
email String @unique
password String
first_login Boolean
}