added CRUD Customers
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user