upd entity

This commit is contained in:
Rizki
2026-01-24 15:17:01 +07:00
parent d69405bd21
commit 9d0f89655f

View File

@ -19,10 +19,16 @@ export class FinanceChecklistPayment {
})
type: FinanceChecklistPaymentType;
@Column({
unique: true,
length: 128,
})
code: string;
@Column({
nullable: false,
})
date: Date;
checklist_payment_at: Date;
@ManyToOne(() => FinanceFundingSource, { onDelete: "NO ACTION", nullable: true })
@JoinColumn()