fix: douyin 缺少一个collected_count字段

This commit is contained in:
Relakkes 2023-07-28 21:23:37 +08:00
parent 03565d61c6
commit febbb133d7

View File

@ -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"