Alembic is a lightweight database migration tool for usage with the SQLAlchemy Database Toolkit for Python.

learn more… | top users | synonyms

1
vote
1answer
1k views

Auto Generating Migrations using alembic

In the tutorial: http://alembic.readthedocs.org/en/latest/tutorial.html I tested Auto Generating Migrations function by below command: alembic revision --autogenerate -m "Added account table" and ...
1
vote
1answer
381 views

Integrating Alembic with SQLAlchemy

I'm looking at a way to integrate Alembic with SQLAlchemy. What I need is a way so that Alembic detects any changes I make in models.py automatically and updates it in the MySQL database when I run ...
2
votes
0answers
72 views

alembic/env.py target_metadata = metadata “No module name al_test.models”

When I use alembic to control the version of my project's database,part of codes in env.py like: # add your model's MetaData object here # for 'autogenerate' support # from myapp import mymodel # ...
2
votes
1answer
213 views

Alembic --autogenerate producing empty migration

I am trying to use Alembic for the first time and want to use --autogenerate feature described here My project structure looks like project/ configuration/ __init__.py ...
0
votes
2answers
168 views

Relative importing python module from a subfolder from a different subfolder

I'm trying to use alembic which is an sqlalchemy tool in python. You type a command and it generates a folder "alembic" with py files inside. The py file inside, needs to link to my application in a ...
0
votes
2answers
213 views

How to turn on 'PRAGMA foreign_keys = ON' in sqlalchemy migration script or configuration file for sqlite?

In a suitable sqlite version, we can enforce foreign key constraint by 'PRAGMA foreign_keys = ON'. However user can not log in a database every time when making a connection. So I wonder how can we ...