2025-12-11 11:30:18 +08:00

24 lines
497 B
Plaintext

// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model Message {
id Int @id @default(autoincrement())
name String
phone String
email String
description String @db.Text
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
@@map("messages")
}