From d41db89352e04cb52302234f5a79dbf9dd091497 Mon Sep 17 00:00:00 2001 From: fadlydev Date: Tue, 4 Feb 2025 22:45:21 +0700 Subject: [PATCH] update category to RO --- src/entity/request_orders.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/entity/request_orders.ts b/src/entity/request_orders.ts index f382237..08dac15 100644 --- a/src/entity/request_orders.ts +++ b/src/entity/request_orders.ts @@ -79,6 +79,8 @@ export class RequestOrder { @Column({ type: 'text', nullable: true }) ga_approval_remarks: string | null; + @Column({ type: 'varchar', nullable: true }) + category: string | null; // Storing goods as a JSON array, Use 'jsonb' for PostgreSQL or 'json' for MySQL @Column({ type: 'jsonb', nullable: true })