This commit is contained in:
wayanrivan
2026-04-16 17:11:38 +07:00
parent 57c050f7a3
commit 065870f2f3
2 changed files with 3 additions and 3 deletions

View File

@ -118,8 +118,8 @@ export class CashierItem {
@Column({ nullable: true }) @Column({ nullable: true })
@DeleteDateColumn() @DeleteDateColumn()
deleted_at: Date; deleted_at: Date | null;
@Column({ nullable: true, length: 256 }) @Column({ nullable: true, length: 256 })
deleted_by: string; deleted_by: string | null;
} }

View File

@ -52,7 +52,7 @@ export class EmrDoctorProcedure {
@Column({ nullable: true }) @Column({ nullable: true })
@DeleteDateColumn() @DeleteDateColumn()
deleted_at: Date; deleted_at: Date | null;
@Column({ nullable: true, length: 256 }) @Column({ nullable: true, length: 256 })
deleted_by: string; deleted_by: string;