]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
The ``deferrable`` keyword argument on :class:`.ForeignKey` and
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 3 Jun 2013 22:33:20 +0000 (18:33 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 3 Jun 2013 22:33:57 +0000 (18:33 -0400)
commitcc1ea5da10d2424ea2887a68fddfe07a3928c616
treeebf7506d009f63738532286fdf553f44ee7929be
parentc2bbdf7770337c8b2cfb4e7340d06c895b171b0b
The ``deferrable`` keyword argument on :class:`.ForeignKey` and
:class:`.ForeignKeyConstraint` will not render the ``DEFERRABLE`` keyword
on the MySQL dialect.  For a long time we left this in place because
a non-deferrable foreign key would act very differently than a deferrable
one, but some environments just disable FKs on MySQL, so we'll be less
opinionated here. [ticket:2721]

Conflicts:
doc/build/changelog/changelog_09.rst
doc/build/changelog/changelog_08.rst
lib/sqlalchemy/dialects/mysql/base.py
test/dialect/test_mysql.py