working auth + db
This commit is contained in:
parent
a625b077cc
commit
5b93901976
6 changed files with 201 additions and 22 deletions
|
|
@ -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?
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue