mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
18 lines
771 B
Python
18 lines
771 B
Python
from datetime import datetime
|
|
from typing import Literal
|
|
|
|
from nonebot_plugin_orm import Model
|
|
from sqlalchemy import DateTime, String
|
|
from sqlalchemy.orm import Mapped, MappedAsDataclass, mapped_column
|
|
|
|
from ....db.models import PydanticType
|
|
from .schemas.base import SuccessModel
|
|
|
|
|
|
class TETRIOHistoricalData(MappedAsDataclass, Model):
|
|
id: Mapped[int] = mapped_column(init=False, primary_key=True)
|
|
user_unique_identifier: Mapped[str] = mapped_column(String(24), index=True)
|
|
api_type: Mapped[Literal['User Info', 'User Records']] = mapped_column(String(16), index=True)
|
|
data: Mapped[SuccessModel] = mapped_column(PydanticType(get_model=[SuccessModel.__subclasses__], models=set()))
|
|
update_time: Mapped[datetime] = mapped_column(DateTime, index=True)
|