Feat: Add user login / logout
This commit is contained in:
parent
40c451b2c0
commit
ac3cf943f2
32 changed files with 7315 additions and 0 deletions
16
app/prisma/schema.prisma
Normal file
16
app/prisma/schema.prisma
Normal file
|
@ -0,0 +1,16 @@
|
|||
generator client {
|
||||
provider = "prisma-client-js"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
model Utilisateurice {
|
||||
id String @id @default(uuid())
|
||||
username String
|
||||
password String
|
||||
email String
|
||||
admin Boolean @default(false)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue