Skip to content

Commit

Permalink
fix: changed horizontalAccuracyCE90 to numeric (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
nitzanmorr authored Dec 10, 2024
1 parent c073cb5 commit 88611d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/models/layerMetadata/layerMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ export class LayerMetadata implements ILayerMetadata, IMetadataCommonModel {
@catalogDB({
column: {
name: 'max_horizontal_accuracy_ce_90',
type: 'real',
type: 'numeric',
},
})
@tsTypes({
Expand Down Expand Up @@ -474,7 +474,7 @@ export class LayerMetadata implements ILayerMetadata, IMetadataCommonModel {
@catalogDB({
column: {
name: 'min_horizontal_accuracy_ce_90',
type: 'real',
type: 'numeric',
},
})
@tsTypes({
Expand Down
2 changes: 1 addition & 1 deletion src/models/polygonParts/polygonPartRecord.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export class PolygonPartRecord implements IPolygonPart, IOrmCatalog {
@catalogDB({
column: {
name: camelCaseToSnakeCase('horizontalAccuracyCE90'),
type: 'real',
type: 'numeric',
nullable: false,
},
})
Expand Down

0 comments on commit 88611d9

Please sign in to comment.