zhaoqingang
2025-01-10 5a11a870e2abb5201f62c253ca811e52035864ed
1
2
3
4
5
6
7
8
9
from sqlalchemy import Column, Integer, String
from app.models.postgresql_base_model import PostgresqlBase
 
class AppToken(PostgresqlBase):
    __tablename__ = "app_service_token"
 
    id = Column(Integer, primary_key=True, index=True)
    token = Column(String, unique=True, index=True)
    app_token = Column(String)