refactor(f4): remove inspection legacy type shims

This commit is contained in:
2026-09-08 08:50:42 -03:00
parent f70962a819
commit a9fc9f3e8e
@@ -23,12 +23,6 @@ export class InspectionVisit extends TimestampedEntity {
@Column({ type: 'varchar', length: 80 })
code!: string;
/**
* Compatibilidad TypeScript transitoria con el constructor de Inspecciones.
* No es una columna ORM: F4 retiró inspection_visits.title físicamente.
*/
title?: string;
@Column({ type: 'text', nullable: true })
objective!: string | null;
@@ -50,12 +44,6 @@ export class InspectionVisit extends TimestampedEntity {
@Column({ name: 'planned_start_at', type: 'timestamptz', nullable: true })
plannedStartAt!: Date | null;
/**
* Compatibilidad TypeScript transitoria con el constructor de Inspecciones.
* No es una columna ORM: F4 retiró inspection_visits.planned_end_at físicamente.
*/
plannedEndAt?: Date | null;
@Column({ name: 'actual_started_at', type: 'timestamptz', nullable: true })
actualStartedAt!: Date | null;