Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ways to manage DB migrations with SQLAlchemy? [closed]

I've looked at sqlalchemy-migrate, but it just seems like a lot of work and I haven't been able to find any useful examples.

Anyone care to share how they handle this?

like image 275
Jeremy Cantrell Avatar asked Mar 14 '11 00:03

Jeremy Cantrell


People also ask

What is database migrations Alembic?

Alembic is a lightweight database migration tool for SQLAlchemy. It is created by the author of SQLAlchemy and it has become the de-facto standard tool to perform migrations on SQLAlchemy backed databases.

Which of the following extensions is required for performing database migrations?

Flask-Migrate is an extension that handles SQLAlchemy database migrations for Flask applications using Alembic.


1 Answers

Check out new project Alembic: http://readthedocs.org/docs/alembic/en/latest/index.html

like image 125
Dmitry Nedbaylo Avatar answered Oct 08 '22 22:10

Dmitry Nedbaylo