| 2193 | bs = relationship("B", order_by="B.id") |
| 2194 | |
| 2195 | class A_default(ComparableEntity, Base): |
| 2196 | __tablename__ = "a_default" |
| 2197 | id = Column(Integer, primary_key=True) |
| 2198 | x = Column(Integer) |
| 2199 | y = Column(Integer) |
| 2200 | |
| 2201 | my_expr = query_expression(default_expr=literal(15)) |
| 2202 | |
| 2203 | class B(ComparableEntity, Base): |
| 2204 | __tablename__ = "b" |