| 1176 | Base = cls.DeclarativeBasic |
| 1177 | |
| 1178 | class A(ComparableMixin, Base): |
| 1179 | __tablename__ = "a" |
| 1180 | |
| 1181 | id = Column(Integer, Identity(), primary_key=True) |
| 1182 | data = Column(String(30)) |
| 1183 | bs = relationship("B") |
| 1184 | |
| 1185 | class B(ComparableMixin, Base): |
| 1186 | __tablename__ = "b" |