Skip to content

Commit

Permalink
fix: douyin 缺少一个collected_count字段
Browse files Browse the repository at this point in the history
  • Loading branch information
NanmiCoder committed Jul 28, 2023
1 parent 03565d6 commit febbb13
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions models/douyin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit febbb13

Please sign in to comment.