Skip to main content

SQLAlchemy database migrations for Flask applications using Alembic.

Project description

Flask-Migrate

Build status

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:

from flask import Flask
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate

app = 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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Flask-Migrate-4.0.5.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

Flask_Migrate-4.0.5-py3-none-any.whl (21.0 kB view details)

Uploaded Python 3

File details

Details for the file Flask-Migrate-4.0.5.tar.gz.

File metadata

  • Download URL: Flask-Migrate-4.0.5.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for Flask-Migrate-4.0.5.tar.gz
Algorithm Hash digest
SHA256 d3f437a8b5f3849d1bb1b60e1b818efc564c66e3fefe90b62e5db08db295e1b1
MD5 4a76ae74bffd13b76b45efb20f5f64f8
BLAKE2b-256 9b640b0b96fd2401b26628a2a12c4b2953dfef4cb7922b9a9d207cd920cfbfc4

See more details on using hashes here.

Provenance

File details

Details for the file Flask_Migrate-4.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for Flask_Migrate-4.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 613a2df703998e78716cace68cd83972960834424457f5b67f56e74fff950aef
MD5 9bf5a4ecdfc07097b0668ea1325d2e24
BLAKE2b-256 0e3a3e7a97fff0396e5206af5fdcbf66fdbb499b1daa049fbe074566fd73c664

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page