corrected AM dto + entity

This commit is contained in:
2025-09-08 10:24:01 +02:00
parent c5b25fb0b2
commit ee06f02e4d
2 changed files with 20 additions and 13 deletions
@@ -34,9 +34,9 @@ export class AssistanteMaternelle {
@Column({ name: 'biographie', type: 'text', nullable: true })
biography?: string;
@Column({ name: 'disponible', type: 'boolean', default: true })
available: boolean;
@Column({ name: 'disponible', type: 'boolean', default: true, nullable: true })
available?: boolean;
@Column({ name: 'ville_residence', length: 100, nullable: true })
city?: string;
residence_city?: string;
}