0
votes
0answers
26 views

Alembic detects changes but produces empty migration with --autogenerate

I'm trying to get alembic working auto-producing migrations with the --autogenerate flag. When I run alembic -n mydbname --autogenerate -m "my message" I get something like: INFO ...
1
vote
1answer
377 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 ...
0
votes
1answer
78 views

How do I set an initial value for a primary key set to automatically increment using SQLAlchemy/Alembic?

In MySQL, we can use AUTO_INCREMENT = ? to automatically insert a primary key value. How do we do it in SQLAlchemy/Alembic? Thanks very much!