Flask extension to integrate Alembic migrations
Project description
This Flask extension provides a configurable Alembic migration environment around a Flask-SQLAlchemy database.
Installation
Install releases from PyPI:
pip install Flask-Alembic
Install latest code from BitBucket:
pip install https://bitbucket.org/davidism/flask-alembic
Basic Usage
You’ve created a Flask application and some models with Flask-SQLAlchemy. Now start using Flask-Alembic:
from flask_alembic import Alembic # Intialize the extension alembic = Alembic() alembic.init_app(app) # Auto-generate a migration alembic.revision('making changes') # Upgrade the database alembic.upgrade() # Access the internals environment_context = alembic.env
Differences from Alembic core
Configuration is taken from Flask instead of alembic.ini.
The migrations are stored directly in the migrations folder instead of the versions folder.
The extension provides the migration environment instead of env.py.
Does not (currently) support offline migrations.
Differences from Flask-Migrate
Flask-Migrate is a simple wrapper around the existing Alembic commands. It associates the Flask-SQLAlchemy database with Alembic, and wraps the Alembic commands with Flask-Script. It still requires the standard Alembic file structure, does not integrate with Flask configuration, and does not expose the Alembic internals.
TODO
See if db.session can be used rather than establishing new connections.
Support multiple databases though Flask-SQLAlchemy’s binds.
Support offline migrations.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file Flask-Alembic-1.1.tar.gz
.
File metadata
- Download URL: Flask-Alembic-1.1.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae625e353f12fd5c4a724311ba639dd56861ffedd4a30aedbe01724ac52652a2 |
|
MD5 | 2e9d2a6ebf7736622534cf76d094e38d |
|
BLAKE2b-256 | 9031163450a007eda0a2dfe9348caaae3405d2d9e0e428d05a1e58d9aa71f835 |