| 221 | id = Column(Integer, primary_key=True) |
| 222 | |
| 223 | class C(ComparableEntity, Base): |
| 224 | __tablename__ = "c" |
| 225 | |
| 226 | id = Column(Integer, primary_key=True) |
| 227 | a_id = Column(ForeignKey("a.id")) |
| 228 | |
| 229 | class D(ComparableEntity, Base): |
| 230 | __tablename__ = "d" |