Subir archivos a "/"
This commit is contained in:
23
schema.prisma
Normal file
23
schema.prisma
Normal file
@@ -0,0 +1,23 @@
|
||||
generator client {
|
||||
provider = "prisma-client-js"
|
||||
}
|
||||
|
||||
datasource db {
|
||||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
model User {
|
||||
id String @id @default(uuid())
|
||||
createdAt DateTime @default(now())
|
||||
updatedAt DateTime @updatedAt
|
||||
|
||||
phone String @unique
|
||||
passwordHash String
|
||||
isVerified Boolean @default(false)
|
||||
|
||||
verificationCodeHash String?
|
||||
verificationCodeExpiresAt DateTime?
|
||||
|
||||
lastLoginAt DateTime?
|
||||
}
|
||||
Reference in New Issue
Block a user