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

Class User

test/orm/dml/test_bulk.py:1051–1054  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1049 Base = cls.DeclarativeBasic
1050
1051 class User(Base):
1052 __tablename__ = "users"
1053 id = Column(Integer, Identity(), primary_key=True)
1054 name = Column(String(255), nullable=False)
1055
1056 def test_issue_6793(self):
1057 User = self.classes.User

Calls 3

ColumnClass · 0.90
IdentityClass · 0.90
StringClass · 0.90