Skip to content

Commit

Permalink
mark column as read-only
Browse files Browse the repository at this point in the history
  • Loading branch information
hotzevzl committed Jul 1, 2022
1 parent e4737fa commit ecdd56a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/libs/geofeatures/src/geo-feature.geo.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit ecdd56a

Please sign in to comment.