MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / A

Class A

test/orm/test_ac_relationships.py:212–216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

210 Base = cls.DeclarativeBasic
211
212 class A(ComparableEntity, Base):
213 __tablename__ = "a"
214
215 id = Column(Integer, primary_key=True)
216 b_id = Column(ForeignKey("b.id"))
217
218 class B(ComparableEntity, Base):
219 __tablename__ = "b"

Callers 3

insert_dataMethod · 0.70
insert_dataMethod · 0.70
insert_dataMethod · 0.70

Calls 2

ColumnClass · 0.90
ForeignKeyClass · 0.90

Tested by 3

insert_dataMethod · 0.56
insert_dataMethod · 0.56
insert_dataMethod · 0.56