🗃️ 添加 verify 字段到 Bind 模型,并在创建或更新绑定时支持该字段

This commit is contained in:
2025-07-22 23:15:42 +08:00
parent 144c223fe9
commit b709c91db8
3 changed files with 46 additions and 0 deletions

View File

@@ -71,6 +71,7 @@ class Bind(MappedAsDataclass, Model):
user_id: Mapped[int] = mapped_column(index=True)
game_platform: Mapped[GameType] = mapped_column(String(32))
game_account: Mapped[str]
verify: Mapped[bool]
class TriggerHistoricalDataV2(MappedAsDataclass, Model):