]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commit
- Fully implemented the
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 27 Mar 2015 22:55:00 +0000 (18:55 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 27 Mar 2015 22:55:00 +0000 (18:55 -0400)
commitf02f211b93ad31992e20afcb60c17a314afa8425
tree4cf0cfb4f65dad85c4dac58a54dc052b965a326b
parent9545e87008bfa4024d0a35c5bbd65c27048bd84e
- Fully implemented the
:paramref:`~.Operations.batch_alter_table.copy_from` parameter for
batch mode, which previously was not functioning.  This allows
"batch mode" to be usable in conjunction with ``--sql``.
fixes #289
- sqlite dialect checks for "create_index" and "drop_index" as exceptions
for "recreate" in batch mode, the same way as "add_column", so that
unnecessary table recreates don't emit for index-only operations
alembic/batch.py
alembic/ddl/sqlite.py
alembic/operations.py
alembic/testing/fixtures.py
docs/build/batch.rst
docs/build/changelog.rst
tests/test_batch.py