Subir archivos a "/"

This commit is contained in:
2026-02-07 21:19:03 +00:00
parent 1f9aac7993
commit aa2800b203
4 changed files with 70 additions and 23 deletions

23
schema.prisma Normal file
View 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?
}