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 [alembic.migration] Context impl MySQLImpl.
INFO [alembic.migration] Will assume non-transactional DDL.
INFO [alembic.autogenerate] Detected removed table u'some_table'
INFO [alembic.autogenerate] Detected NULL on column 'table_a.column_a'
INFO [alembic.autogenerate] Detected added column 'table_b.column_b'
.......
but then when I look at the migration file that is generated, upgrade
and downgrade
both simply say pass
.
What's going on?!