update eform request signatures

This commit is contained in:
2025-08-27 15:44:23 +07:00
parent a260c4c301
commit 931ceca3b0

View File

@ -136,6 +136,12 @@ export class EformRequest {
@Column({ type: "boolean", nullable: true })
is_spv_approved: boolean;
@Column({
nullable: true,
length: 4096,
})
spv_signatures: String;
@Column({ type: "varchar", length: 100, nullable: true })
spv_approved_by: string;
@ -151,12 +157,24 @@ export class EformRequest {
@Column({ nullable: true })
ga_approved_at: Date;
@Column({
nullable: true,
length: 4096,
})
ga_signatures: String;
@Column({ type: "boolean", nullable: true })
is_gm_approved: boolean;
@Column({ type: "varchar", length: 100, nullable: true })
gm_approved_by: string;
@Column({
nullable: true,
length: 4096,
})
gm_signatures: String;
@Column({ nullable: true })
gm_approved_at: Date;