MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / Order

Class Order

test/ext/test_automap.py:282–287  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280 Base = automap_base(metadata=self.tables_test_metadata)
281
282 class Order(Base):
283 __tablename__ = "orders"
284
285 items_collection = relationship(
286 "items", secondary="order_items", collection_class=set
287 )
288
289 Base.prepare()
290

Calls 1

relationshipFunction · 0.90