From b23edd987f1896e27c430da0ab2635fdafa63a9c Mon Sep 17 00:00:00 2001 From: fro1991 Date: Sat, 18 Oct 2025 04:21:46 +0700 Subject: [PATCH] update --- src/entity/trx_verifications.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/entity/trx_verifications.ts b/src/entity/trx_verifications.ts index ea1e375..a6770bb 100644 --- a/src/entity/trx_verifications.ts +++ b/src/entity/trx_verifications.ts @@ -50,11 +50,20 @@ export class TrxVerification { @CreateDateColumn() created_at: Date; + @Column({ nullable: true, length: 256 }) + created_by: string; + @Column({ nullable: true }) @UpdateDateColumn() updated_at: Date; + @Column({ nullable: true, length: 256 }) + updated_by: string; + @Column({ nullable: true }) @DeleteDateColumn() deleted_at: Date; + + @Column({ nullable: true, length: 256 }) + deleted_by: string; }