MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / Parent

Class Parent

test/ext/test_associationproxy.py:2690–2694  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2688 # 1. build parent, Mixin.children gets invoked, we add
2689 # Parent.children
2690 class Parent(Mixin, Base):
2691 __tablename__ = "parent"
2692 id = Column(Integer, primary_key=True)
2693
2694 _children = relationship("Child")
2695
2696 class Child(Base):
2697 __tablename__ = "child"

Callers

nothing calls this directly

Calls 4

ColumnClass · 0.90
relationshipFunction · 0.90
association_proxyFunction · 0.90
ChildClass · 0.70

Tested by

no test coverage detected