Skip to content

Commit

Permalink
[fix] 修复评分过低导致漏过视频的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
runs committed Jan 1, 2023
1 parent 430d779 commit 8a2d3de
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions database/init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ create table user
);


INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '莞儿', 30);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '莞儿睡不醒', 50);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '露早', 30);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '露早GOGO', 50);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '米诺', 30);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '米诺高分少女', 50);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '虞莫', 30);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '虞莫MOMO', 50);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '柚恩', 30);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '柚恩不加糖', 50);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', 'EOE', 30);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', 'EOE组合', 50);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '莞儿', 80);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '莞儿睡不醒', 100);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '露早', 80);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '露早GOGO', 100);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '米诺', 80);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '米诺高分少女', 100);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '虞莫', 80);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '虞莫MOMO', 100);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '柚恩', 80);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', '柚恩不加糖', 100);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', 'EOE', 80);
INSERT INTO video_analysis (type, `key`, score) VALUES ('tag', 'EOE组合', 100);

0 comments on commit 8a2d3de

Please sign in to comment.