children entity (forgot to push it before...

This commit is contained in:
sdraris 2025-09-08 10:49:43 +02:00
parent 5fc3102b25
commit 600d30abbd

View File

@ -31,11 +31,11 @@ export class Children {
})
status: StatutEnfantType;
@Column({ name: 'prenom', length: 100 })
first_name: string;
@Column({ name: 'prenom', length: 100, nullable: true })
first_name?: string;
@Column({ name: 'nom', length: 100 })
last_name: string;
@Column({ name: 'nom', length: 100, nullable: true })
last_name?: string;
@Column({
type: 'enum',