Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/cytoid/orm.py
2022-06-13 12:49:22 +08:00

18 lines
382 B
Python

from sqlalchemy import Column, String
from database.orm import Session
from database.orm_base import Base
table_prefix = 'module_cytoid_'
db = Session
session = db.session
engine = db.engine
class CytoidBindInfo(Base):
__tablename__ = table_prefix + 'CytoidBindInfo'
targetId = Column(String(512), primary_key=True)
username = Column(String(512))
Session.create()