]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- [bug] Fixed a disconnect that slowly evolved
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 15 Sep 2012 01:58:19 +0000 (21:58 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 15 Sep 2012 01:58:19 +0000 (21:58 -0400)
commit062f0a202af1185a21b94f33cb7af92cffacfd15
treee7b05b753cb4e35f6d96ad245ff1d6b55439580f
parentb585b9b56eb809b65df545e6852c8ee6cfe12c6a
- [bug] Fixed a disconnect that slowly evolved
between a @declared_attr Column and a
directly-defined Column on a mixin. In both
cases, the Column will be applied to the
declared class' table, but not to that of a
joined inheritance subclass.   Previously,
the directly-defined Column would be placed
on both the base and the sub table, which isn't
typically what's desired.  [ticket:2565]
CHANGES
lib/sqlalchemy/ext/declarative/base.py
test/ext/declarative/test_mixin.py