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/arcaea/orm.py
2023-05-16 22:52:15 +08:00

20 lines
460 B
Python

from sqlalchemy import Column, String
from database.orm import Session
from database.orm_base import Base
table_prefix = 'module_arcaea_'
db = Session
session = db.session
engine = db.engine
class ArcBindInfo(Base):
__tablename__ = table_prefix + 'ArcBindInfo'
__table_args__ = {'extend_existing': True}
targetId = Column(String(512), primary_key=True)
username = Column(String(512))
friendcode = Column(String(512))
Session.create()