rumine-api-wrapper/db/sql_schemas/TabUser.py

13 lines
293 B
Python
Raw Permalink Normal View History

2024-03-07 14:06:53 +01:00
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)