change schema according to migration

This commit is contained in:
Julian Krauser 2025-06-08 07:55:40 +02:00
parent e056db053b
commit f11ed83afc
6 changed files with 34 additions and 34 deletions

View file

@ -21,10 +21,10 @@ export class inspectionPlan {
@CreateDateColumn()
createdAt: Date;
@Column()
@Column({ nullable: true, default: null })
equipmentTypeId?: string;
@Column()
@Column({ nullable: true, default: null })
vehicleTypeId?: string;
@ManyToOne(() => equipmentType, {