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

Class B

test/aaa_profiling/test_orm.py:1342–1353  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1340 bs = relationship("B")
1341
1342 class B(Base):
1343 __tablename__ = "b"
1344 id = Column(Integer, Identity(), primary_key=True)
1345 a_id = Column(ForeignKey("a.id"))
1346 boolean = query_expression()
1347 d1 = Column(String(30))
1348 d2 = Column(String(30))
1349 d3 = Column(String(30))
1350 d4 = Column(String(30))
1351 d5 = Column(String(30))
1352 d6 = Column(String(30))
1353 d7 = Column(String(30))
1354
1355 @classmethod
1356 def insert_data(cls, connection):

Callers

nothing calls this directly

Calls 5

ColumnClass · 0.90
IdentityClass · 0.90
ForeignKeyClass · 0.90
query_expressionFunction · 0.90
StringClass · 0.90

Tested by

no test coverage detected