27 lines
651 B
Plaintext
27 lines
651 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"
|
|
binaryTargets = ["native", "linux-musl-arm64-openssl-3.0.x"]
|
|
output = "/home/ubuntu/global_it24_landing/nextjs_space/node_modules/.prisma/client"
|
|
}
|
|
|
|
datasource db {
|
|
provider = "postgresql"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
model ContactSubmission {
|
|
id String @id @default(cuid())
|
|
name String
|
|
phone String
|
|
email String?
|
|
serviceType String?
|
|
message String?
|
|
createdAt DateTime @default(now())
|
|
|
|
@@map("contact_submissions")
|
|
}
|