Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miguelgrinberg/Flask-Migrate
SQLAlchemy database migrations for Flask applications using Alembic
https://github.com/miguelgrinberg/Flask-Migrate
alembic database flask migrations python sqlalchemy-database-migrations
Last synced: 3 months ago
JSON representation
SQLAlchemy database migrations for Flask applications using Alembic
- Host: GitHub
- URL: https://github.com/miguelgrinberg/Flask-Migrate
- Owner: miguelgrinberg
- License: mit
- Created: 2013-09-08T19:24:57.000Z (over 11 years ago)
- Default Branch: main
- Last Pushed: 2024-03-24T19:59:40.000Z (10 months ago)
- Last Synced: 2024-05-02T04:53:11.019Z (8 months ago)
- Topics: alembic, database, flask, migrations, python, sqlalchemy-database-migrations
- Language: Python
- Size: 327 KB
- Stars: 2,302
- Watchers: 26
- Forks: 223
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-flask - Flask-Migrate - SQLAlchemy database migrations for Flask applications using Alembic (Database Migrations)
- awesome-flask - Flask-Migrate - SQLAlchemy database migrations for Flask applications using Alembic (Database Migrations)
- awesome-github-star - Flask-Migrate
- awesome-flask - Flask-Migrate - SQLAlchemy database migrations for Flask applications using Alembic (Database Migrations)
- jimsghstars - miguelgrinberg/Flask-Migrate - SQLAlchemy database migrations for Flask applications using Alembic (Python)
- best-of-web-python - GitHub - 2% open · ⏱️ 24.03.2024): (Flask Utilities)
README
Flask-Migrate
=============[![Build status](https://github.com/miguelgrinberg/flask-migrate/workflows/build/badge.svg)](https://github.com/miguelgrinberg/flask-migrate/actions)
Flask-Migrate is an extension that handles SQLAlchemy database migrations for Flask applications using Alembic. The database operations are provided as command-line arguments under the `flask db` command.
Installation
------------Install Flask-Migrate with `pip`:
pip install Flask-Migrate
Example
-------This is an example application that handles database migrations through Flask-Migrate:
```python
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrateapp = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///app.db'db = SQLAlchemy(app)
migrate = Migrate(app, db)class User(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String(128))
```With the above application you can create the database or enable migrations if the database already exists with the following command:
$ flask db init
Note that the `FLASK_APP` environment variable must be set according to the Flask documentation for this command to work. This will add a `migrations` folder to your application. The contents of this folder need to be added to version control along with your other source files.
You can then generate an initial migration:
$ flask db migrate
The migration script needs to be reviewed and edited, as Alembic currently does not detect every change you make to your models. In particular, Alembic is currently unable to detect indexes. Once finalized, the migration script also needs to be added to version control.Then you can apply the migration to the database:
$ flask db upgrade
Then each time the database models change repeat the `migrate` and `upgrade` commands.To sync the database in another system just refresh the `migrations` folder from source control and run the `upgrade` command.
To see all the commands that are available run this command:
$ flask db --help
Resources
---------- [Documentation](http://flask-migrate.readthedocs.io/en/latest/)
- [pypi](https://pypi.python.org/pypi/Flask-Migrate)
- [Change Log](https://github.com/miguelgrinberg/Flask-Migrate/blob/master/CHANGES.md)