feat(db): update model to support JSON

This commit is contained in:
InfinityPacer
2024-09-30 03:07:33 +08:00
parent 7c643432ee
commit daadfcffd8
12 changed files with 20 additions and 39 deletions

View File

@@ -63,7 +63,7 @@ class SiteStatistic(BaseModel):
# 最后修改时间
lst_mod_date: Optional[str]
# 备注
note: Optional[str] = None
note: Optional[dict] = None
class Config:
orm_mode = True