feat: 抖音支持评论点赞数量 #495

This commit is contained in:
Relakkes
2024-11-16 00:37:48 +08:00
parent c12a63acb2
commit 8ab4c67443
2 changed files with 5 additions and 0 deletions

View File

@@ -531,3 +531,7 @@ CREATE TABLE `zhihu_creator` (
PRIMARY KEY (`id`),
UNIQUE KEY `idx_zhihu_creator_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='知乎创作者';
-- add column `like_count` to douyin_aweme_comment
alter table douyin_aweme_comment add column `like_count` varchar(255) NOT NULL DEFAULT '0' COMMENT '点赞数';