From 817e6bf0af06353f89ff1c2601b4af511700d6a8 Mon Sep 17 00:00:00 2001 From: fro1991 Date: Mon, 17 Nov 2025 19:53:38 +0900 Subject: [PATCH] update --- src/entity/trx_customer_costs.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/entity/trx_customer_costs.ts b/src/entity/trx_customer_costs.ts index 97a6579..668b4de 100644 --- a/src/entity/trx_customer_costs.ts +++ b/src/entity/trx_customer_costs.ts @@ -60,6 +60,12 @@ export class TrxCustomerCost { }) status: Status; + @Column({ + default: 1.0, + type: "float8", + }) + seq: number; + @Column() @CreateDateColumn() created_at: Date;