Use this tag for questions related to the Flask extension flask-migrate, this extension implements SQLAlchemy database migrations.
I'm trying to run a Flask application with flask run but no matter what, I receive this error: Error: Could …
flask flask-migrateWhen I'm trying to create a database schema migration, I'm getting this weird error. Can you please help me to …
python sqlalchemy flask-sqlalchemy flask-migrateI'm learning flask web microframework and after initialization of my database I run flask db init I run flask db …
python-3.x flask flask-sqlalchemy flask-login flask-migrateI started using Flask-Migrate today and installed it on a test project. However i am getting following error: alembic.util.…
python flask flask-sqlalchemy flask-migrateHow can I insert some seed data in my first migration? If the migration is not the best place for …
python flask flask-sqlalchemy alembic flask-migrateI have the following models in file listpull/models.py: from datetime import datetime from listpull import db class Job(…
python flask flask-sqlalchemy flask-migrateI've been using Flask-Migrate (Alembic) for updating my database. I updated my models.py file however I made an error. …
python flask sqlalchemy alembic flask-migrateI've setup a local Postgres DB with SQLAlchemy and cannot commit my first entry. I keep on getting this error... …
python postgresql sqlalchemy-migrate flask-migrateI'm working through a flask tutorial and am trying to run a script that creates a database instead of doing …
python flask importerror flask-sqlalchemy flask-migrateI am using SqlAlchemy and Flask-migrate for DB migration. I have successfully init the DB and upgrade once, but when …
python sqlalchemy flask-migrate