fix typo in column name...

This commit is contained in:
gluap 2023-04-10 12:05:15 +02:00
parent 10fd02804e
commit dc89db5471
No known key found for this signature in database

View file

@ -19,7 +19,7 @@ depends_on = None
def upgrade():
op.execute("UPDATE overtaking_event SET geometry = ST_Transform(geometry, 3857);")
op.execute(
"ALTER TABLE overtaking_event ALTER COLUMN eometry TYPE geometry(POINT, 3857);"
"ALTER TABLE overtaking_event ALTER COLUMN geometry TYPE geometry(POINT, 3857);"
)