MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / User

Class User

test/orm/test_utils.py:1347–1350  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1345 @testing.fixture
1346 def non_inherited_fixture(self, decl_base):
1347 class User(decl_base):
1348 __tablename__ = "user"
1349 id: Mapped[int] = mapped_column(primary_key=True)
1350 name: Mapped[str] = mapped_column()
1351
1352 return User, decl_base
1353

Callers 1

test_identity_key_2Method · 0.70

Calls 1

mapped_columnFunction · 0.90

Tested by 1

test_identity_key_2Method · 0.56