correction prisma legaldoc
Some checks failed
Build and Push App / build (push) Failing after 48s

This commit is contained in:
2026-04-18 22:35:35 +02:00
parent 3fab15a93c
commit f1462b909c

View File

@@ -281,3 +281,10 @@ model SiteSetting {
footerText String? @default("© 2025 Afrohub. Tous droits réservés.") footerText String? @default("© 2025 Afrohub. Tous droits réservés.")
updatedAt DateTime @updatedAt updatedAt DateTime @updatedAt
} }
model LegalDocument {
id String @id @default(uuid())
type String @unique // 'CGU' or 'CGV'
title String
content String @db.Text
updatedAt DateTime @updatedAt
}