This commit is contained in:
fro1991
2025-10-30 02:58:39 +07:00
parent 81ce05dcd8
commit 7f274a9d31
2 changed files with 5 additions and 5 deletions

View File

@ -25,11 +25,6 @@ export class TrxTransactionSignature {
})
document_signature: string;
@Column({
type: "text",
})
qr_code: string;
@Column()
@CreateDateColumn()
created_at: Date;

View File

@ -166,6 +166,11 @@ export class TrxTransaction {
@Column({ nullable: true, length: 256 })
purpose_label: string;
@Column({
type: "text",
})
qr_code: string;
@Column()
@CreateDateColumn()
created_at: Date;