]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
The ``.unique`` flag on :class:`.Index` could be produced as ``None``
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 14 Oct 2013 18:53:28 +0000 (14:53 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 14 Oct 2013 18:56:45 +0000 (14:56 -0400)
commit621c22ca31eb395c4c47e313a00b1708b76d0017
tree0f02efabbdf130962550416164c2a92074acdc1e
parent5389bc5d8d6e72bdf7bf937de77201d6d2a58759
The ``.unique`` flag on :class:`.Index` could be produced as ``None``
if it was generated from a :class:`.Column` that didn't specify ``unique``
(where it defaults to ``None``).  The flag will now always be ``True`` or
``False``. [ticket:2825]

Conflicts:
lib/sqlalchemy/sql/schema.py
doc/build/changelog/changelog_08.rst
lib/sqlalchemy/schema.py
test/sql/test_metadata.py