]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commit
- Added new feature :paramref:`.EnvironmentContext.configure.transaction_per_migration`,
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 2 May 2014 19:46:00 +0000 (15:46 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 2 May 2014 19:46:00 +0000 (15:46 -0400)
commit2d490cd10bd290403ec14111319e24a527a4df9f
tree3f0aee77166ee5dc6ca53f2200eb448a476cd662
parentbc6971aa4abdafb7e1a1123c26a373cc25a34ca9
- Added new feature :paramref:`.EnvironmentContext.configure.transaction_per_migration`,
which when True causes the BEGIN/COMMIT pair to incur for each migration
individually, rather than for the whole series of migrations.  This is
to assist with some database directives that need to be within individual
transactions, without the need to disable transactional DDL entirely.
fixes #201
alembic/environment.py
alembic/migration.py
docs/build/changelog.rst
tests/__init__.py
tests/test_sql_script.py