working auth + db

This commit is contained in:
JBB0807 2025-04-21 11:35:10 -07:00
parent a625b077cc
commit 5b93901976
6 changed files with 201 additions and 22 deletions

View file

@ -9,11 +9,11 @@ datasource db {
}
model users {
UserId Int @id @default(autoincrement())
Name String?
Email String?
Password String?
Role String?
GoogleId String?
LoginType String?
userid Int @id @default(autoincrement())
email String @unique
name String?
password String?
role String?
googleid String?
logintype String?
}