added CRUD Customers

This commit is contained in:
2026-01-20 19:02:49 +01:00
parent 8e8fd70c8c
commit 3a8a6d1576
7 changed files with 1157 additions and 0 deletions

View File

@@ -47,3 +47,22 @@ model UniversPro {
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
model Adherent {
id String @id @default(cuid())
nom String
prenom String
dateNaissance DateTime
adresse String // Adresse de résidence
email String
telephone String
// Informations complémentaires
situation String? // Sélecteur à option
prescripteur String? // Sélecteur à option
facturation String? // Sélecteur à option
commentaire String? // Texte libre
telephoneSecondaire String? // Téléphone secondaire
instructions String? // Instructions
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}