From bff89932aad11dd363dc8206e4afaf2484f40071 Mon Sep 17 00:00:00 2001 From: avicenan Date: Fri, 20 Feb 2026 08:52:44 +0700 Subject: [PATCH] upd: queue monitoring new column name --- src/entity/queue_monitoring.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/entity/queue_monitoring.ts b/src/entity/queue_monitoring.ts index 25e47ae..0b1ec2c 100644 --- a/src/entity/queue_monitoring.ts +++ b/src/entity/queue_monitoring.ts @@ -17,6 +17,12 @@ export class QueueMonitoring { @PrimaryGeneratedColumn('uuid') id: string; + @Column({ + type: 'text', + nullable: false, + }) + name: string; + @Column({ type: 'text', nullable: false,