project setup

This commit is contained in:
Sone
2025-11-02 10:00:53 +01:00
parent 75bd171804
commit 7cb4c5345e
51 changed files with 3616 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model Contact {
id String @id @default(cuid())
firstName String
lastName String
companyName String
address String
email String
phone String
industry String
notes String?
subscribe Boolean
createdAt DateTime @default(now())
}