should be forced to be ``None`` even if :paramref:`.MetaData.schema`
is specified.
+ .. change::
+ :tags: bug, examples
+ :tickets: 3704
+
+ Fixed a regression that occurred in the
+ examples/vertical/dictlike-polymorphic.py example which prevented it
+ from running.
+
.. changelog::
:version: 1.0.13
:released: May 16, 2016
char_value = Column(UnicodeText, info={'type': (str, 'string')})
boolean_value = Column(Boolean, info={'type': (bool, 'boolean')})
- class Animal(ProxiedDictMixin._base_class(Base)):
+ class Animal(ProxiedDictMixin, Base):
"""an Animal"""
__tablename__ = 'animal'