I’m trying to upgrade redash from 6.0.0 to 7.0.0. Upgrade was not successful and seeing - “Internal Server Error”
After following certain documents, I realized it’s require to migrate the database as well. Hence, I performed following steps
- Remove migrations folder under /opt/redash/redash-7.0.0/
rm -rf migrations/
-
Drop the alembic_version table
-
Initialise the DB, under /opt/redash/redash-7.0.0/
bin/run ./manage.py db init
- Upgrade the DB
bin/run ./manage.py db upgrade
- Migrate the DB
bin/run ./manage.py db migrate
Last 3 steps were same as my attachments
After following aforementioned steps, I could not see any new columns being added to the Database. I wonder, what could have I missed here to resolve “Internal Server Error” issue ??