13 lines
293 B
Python
13 lines
293 B
Python
|
from sqlalchemy import Column, String, Integer
|
||
|
from .Base import Base
|
||
|
|
||
|
|
||
|
class TabUser(Base):
|
||
|
__tablename__ = 'tab_users'
|
||
|
|
||
|
id = Column(Integer, primary_key=True)
|
||
|
user = Column(String, index=True)
|
||
|
property = Column(String)
|
||
|
value = Column(String)
|
||
|
expiry = Column(Integer)
|