MCPcopy Create free account
hub / github.com/alpha2phi/python-apps / Accounts

Class Accounts

flask-api/app/models.py:18–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16
17
18class Accounts(Base):
19 __tablename__ = 'accounts'
20
21 userid = Column(Integer, primary_key=True)
22 username = Column(String)
23 password = Column(String)
24 email = Column(String)
25 createdon = Column(DateTime, default=datetime.datetime.utcnow)
26 lastlogin = Column(DateTime)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected