@codeschubse @damien This might be a good introduction (start) to Flask, SQLAlchemy, and database migrations (Flask Migrate Extension)
This is similar to your Laravel workflow.
@codeschubse The classical ORM combination with Flask is SQLAlchemy. For Migrations there is the Alembic package.
I never got the Hang of SQLAlchemy tough, so I am happy I exclusively use Django when I need an ORM.
I could imagine running Flask as a web framework to manage URL routing and such while still using the django ORM by just importing the models into your Flask app.
Would be kind of a Frankenstein project to install django just for the ORM.