Flask-Migrate
Flask-Migrate copied to clipboard
SQLAlchemy database migrations for Flask applications using Alembic
We are using Flask-Migrate(version 3.1.0) from a long time and it used to work fine with our previous flask version BUT after upgrading our Flask version to 2.1.3 it's producing...
Hello, We're having an issue generating migrations through `flask db migrate`, with a fairly sparse error message :D ```bash flask db migrate -m "Fix Filename join issue" INFO [alembic.runtime.migration] Context...
I know this is more a SQLlite issue, but I was wondering how you dealt with the many "No support for ALTER of constraints in SQLite dialect" that arise with...
I want to be able to specify a username:password to Flask-Migrate with permissions to alter tables and drop and create tables, but I don't want my SQLAlchemy user to have...
Hi just trying to build the package for openSUSE and I'm getting Error: No such template 'custom_template' when running the tests. The tar-ball seems to have the custom_template directory missing...
Hi, how are you? I have a problem I'm using flask migrate, but it's generating migrations without any changes in the models, these are the logs when the migration is...
run ```shell flask db migrate # return success # then flask db upgrade # return failed # o my models file define error, so i corrected it. # then run...
## Problem overview I would like to propose somehow being able to specify the specific bind(s) that Flask-Migrate migrates. Within `SQLALCHEMY_BINDS` there may be multiple databases; it is possible that...
``` flask db Traceback (most recent call last): File "/usr/bin/flask", line 11, in load_entry_point('Flask==0.12.2', 'console_scripts', 'flask')() File "/usr/lib/python3/dist-packages/flask/cli.py", line 513, in main cli.main(args=args, prog_name=name) File "/usr/lib/python3/dist-packages/flask/cli.py", line 380, in main...
Hi: I'm currently writing a simple flask app and wanted to try the app with a sqlite database. After creating the models and all the boilerplate for the database, I...