From febbb133d7f95816adf1642963ebcb96d2fd0b0d Mon Sep 17 00:00:00 2001 From: Relakkes Date: Fri, 28 Jul 2023 21:23:37 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20douyin=20=E7=BC=BA=E5=B0=91=E4=B8=80?= =?UTF-8?q?=E4=B8=AAcollected=5Fcount=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- models/douyin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/models/douyin.py b/models/douyin.py index 1f453ea..bd24b57 100644 --- a/models/douyin.py +++ b/models/douyin.py @@ -34,6 +34,7 @@ class DouyinAweme(DouyinBaseModel): liked_count = fields.CharField(null=True, max_length=16, description="视频点赞数") comment_count = fields.CharField(null=True, max_length=16, description="视频评论数") share_count = fields.CharField(null=True, max_length=16, description="视频分享数") + collected_count = fields.CharField(null=True, max_length=16, description="视频收藏数") class Meta: table = "douyin_aweme"