MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / B

Class B

test/aaa_profiling/test_orm.py:1357–1368  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1355 bs = relationship("B")
1356
1357 class B(Base):
1358 __tablename__ = "b"
1359 id = Column(Integer, Identity(), primary_key=True)
1360 a_id = Column(ForeignKey("a.id"))
1361 boolean = query_expression()
1362 d1 = Column(String(30))
1363 d2 = Column(String(30))
1364 d3 = Column(String(30))
1365 d4 = Column(String(30))
1366 d5 = Column(String(30))
1367 d6 = Column(String(30))
1368 d7 = Column(String(30))
1369
1370 @classmethod
1371 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