I\'ve been using Flask-Migrate (Alembic) for updating my database. I updated my models.py file however I made an error. I ran a migration and went to upgrade the da
models.py
The first step is remove the latest migrate version created, then you should use these commands:
flask db stamp head flask db migrate -m "newMigration" flask db upgrade