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

Class A

test/orm/dml/test_bulk_statements.py:2551–2556  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2549 Base = cls.DeclarativeBasic
2550
2551 class A(Base):
2552 __tablename__ = "a"
2553 id: Mapped[int] = mapped_column(
2554 Integer, Identity(), primary_key=True
2555 )
2556 cs = relationship("C")
2557
2558 class B(Base):
2559 __tablename__ = "b"

Calls 3

mapped_columnFunction · 0.90
IdentityClass · 0.90
relationshipFunction · 0.90