Flask - Migrate

The Flask-Migrate plugin allows using an shell interface for Alembic

With Alembic you can manage changes in the database model providing a version control tool and easing the recreation of the database on any design change

First steps

On the project setup we execute

$ python manage.py db init

Or ...

more ...