From ecdd56adadd2df3a551d3374eff91d784fde54f8 Mon Sep 17 00:00:00 2001 From: andrea rota Date: Fri, 1 Jul 2022 16:36:45 +0100 Subject: [PATCH] mark column as read-only --- api/libs/geofeatures/src/geo-feature.geo.entity.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/libs/geofeatures/src/geo-feature.geo.entity.ts b/api/libs/geofeatures/src/geo-feature.geo.entity.ts index 4fe36ffb0b..5533808d5e 100644 --- a/api/libs/geofeatures/src/geo-feature.geo.entity.ts +++ b/api/libs/geofeatures/src/geo-feature.geo.entity.ts @@ -26,6 +26,6 @@ export class GeoFeatureGeometry { featureId?: string; @ApiProperty() - @Column('text', { name: 'hash', nullable: false }) + @Column({ name: 'hash', insert: false, update: false }) hash!: string; }