MCPcopy Create free account
hub / github.com/erans/pgsqlite / User

Class User

tests/python/test_sqlalchemy_minimal.py:13–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11Base = declarative_base()
12
13class User(Base):
14 __tablename__ = 'users'
15
16 id = Column(Integer, primary_key=True)
17 username = Column(String(50))
18 email = Column(String(100))
19
20def main():
21 # Create test database

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by 1

mainFunction · 0.56