Skip to content

Commit

Permalink
fix geom ref_geo test import
Browse files Browse the repository at this point in the history
  • Loading branch information
joelclems committed Jan 11, 2024
1 parent 587144d commit bf47d4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/gn_modulator/schematisable.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def sql_type(cls, key):
sql_type = "VARCHAR"
if sql_type == "DATETIME":
sql_type = "TIMESTAMP"
if "GEOMETRY" in sql_type:
if "GEOMETRY" in sql_type.upper():
sql_type = "GEOMETRY"

return sql_type
Expand Down

0 comments on commit bf47d4a

Please sign in to comment.