This commit is contained in:
2026-01-22 22:05:06 +01:00
parent 59131a54f0
commit f67945d8e7
2 changed files with 12 additions and 1 deletions

View File

@@ -165,4 +165,15 @@ model NewsletterSubscription {
@@index([email])
@@index([createdAt])
}
model Lead {
id String @id @default(cuid())
email String
source String @default("reprint-calculator")
reprintCost Float?
updatesPerYear Float?
annualSavings Float?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}