You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
This is a pretty critical issue we need to solve. For some reason our deployment works differently in RDS than it does locally or using docker-compose. I thought it was solved however it's cropped up again when I renamed our database, as well as recently when Om was testing the new s3 import.
We are unsure if it's Flyway or something RDS related.
What we know about this:
We deploy our RST schema and install postgis;
We deploy our FST schema, it says postgis exists so it doesn't install
We get an error saying that type geometry doesn't exist for flyway schema
How I 'fixed' it for deployment is going into the query editor, doing drop extension 'postgis' cascade; then create extension 'postgis' cascade and then redeploying the flyway task. However I believe this is a bandaid fix, I suspect that the RST schema will error with geometry does not exist once we start adding geometry fields to that schema.
The text was updated successfully, but these errors were encountered:
Describe the bug
This is a pretty critical issue we need to solve. For some reason our deployment works differently in RDS than it does locally or using docker-compose. I thought it was solved however it's cropped up again when I renamed our database, as well as recently when Om was testing the new s3 import.
We are unsure if it's Flyway or something RDS related.
What we know about this:
geometry
doesn't exist for flyway schemaHow I 'fixed' it for deployment is going into the query editor, doing
drop extension 'postgis' cascade;
thencreate extension 'postgis' cascade
and then redeploying the flyway task. However I believe this is a bandaid fix, I suspect that the RST schema will error withgeometry does not exist
once we start adding geometry fields to that schema.The text was updated successfully, but these errors were encountered: