From 41dcb8664f35a03726d76687259b342bbf27b0b2 Mon Sep 17 00:00:00 2001 From: alexeh Date: Mon, 17 Jun 2024 09:11:57 +0300 Subject: [PATCH] indicator category nullable --- api/src/modules/indicators/indicator.entity.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/modules/indicators/indicator.entity.ts b/api/src/modules/indicators/indicator.entity.ts index 71d5ca25a..daad64915 100644 --- a/api/src/modules/indicators/indicator.entity.ts +++ b/api/src/modules/indicators/indicator.entity.ts @@ -76,7 +76,7 @@ export class Indicator extends BaseEntity { @ApiProperty() status!: INDICATOR_STATUS; - @Column({ type: 'text', nullable: false }) + @Column({ type: 'text', nullable: true }) category: string; @Column({ type: 'jsonb', nullable: true })