corrected contracts entity

This commit is contained in:
Sofiane Draris 2025-09-13 17:28:05 +02:00
parent b1925539a8
commit cc8de8cba2

View File

@ -28,6 +28,9 @@ export class Contrat {
@Column({type: 'numeric', precision: 6, scale: 2, nullable: true, name: 'indemnites_repas'})
meal_indemnity?: string;
@Column( { name: 'date_debut', type: 'date', nullable: true })
start_date?: Date;
@Column({
type: 'enum',
enum: StatutContratType,