]> 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:53:28 +0000 (14:53 -0400)
commit78a38967c4ad94194308f77f60a922236cd75227
treefba0a49ab71b32d667efea66d065e02bde5c9f4f
parentdbde70a3a23505ab462da3da8639ee22691a0788
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]
doc/build/changelog/changelog_08.rst
lib/sqlalchemy/sql/schema.py
test/sql/test_metadata.py