Toggle navigation
Toggle navigation
This project
Loading...
Sign in
万朱浩
/
Venue-Ops
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
ghmark675
2025-11-03 13:49:29 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
BaiFu
2025-11-03 13:58:53 +0800
Commit
5b125ea91ab9c1f22015133840f70f1a08e04628
5b125ea9
1 parent
dba7fa99
hotfix(database): fix `source_keyword` not in table bilibili_video
Fix: #51
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
13 deletions
MindSpider/DeepSentimentCrawling/MediaCrawler/schema/tables.sql
MindSpider/DeepSentimentCrawling/MediaCrawler/schema/tables.sql
View file @
5b125ea
...
...
@@ -455,19 +455,12 @@ CREATE TABLE tieba_comment
KEY
`idx_tieba_comment_publish_time`
(
`publish_time`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
1
DEFAULT
CHARSET
=
utf8mb4
COLLATE
=
utf8mb4_0900_ai_ci
COMMENT
=
'贴吧评论表'
;
-- 增加搜索来源关键字字段
alter
table
bilibili_video
add
column
`source_keyword`
varchar
(
255
)
default
''
comment
'搜索来源关键字'
;
alter
table
douyin_aweme
add
column
`source_keyword`
varchar
(
255
)
default
''
comment
'搜索来源关键字'
;
alter
table
kuaishou_video
add
column
`source_keyword`
varchar
(
255
)
default
''
comment
'搜索来源关键字'
;
alter
table
weibo_note
add
column
`source_keyword`
varchar
(
255
)
default
''
comment
'搜索来源关键字'
;
alter
table
xhs_note
add
column
`source_keyword`
varchar
(
255
)
default
''
comment
'搜索来源关键字'
;
alter
table
tieba_note
add
column
`source_keyword`
varchar
(
255
)
default
''
comment
'搜索来源关键字'
;
alter
table
bilibili_video
add
column
`source_keyword`
varchar
(
255
)
default
''
comment
'搜索来源关键字'
;
alter
table
douyin_aweme
add
column
`source_keyword`
varchar
(
255
)
default
''
comment
'搜索来源关键字'
;
alter
table
kuaishou_video
add
column
`source_keyword`
varchar
(
255
)
default
''
comment
'搜索来源关键字'
;
alter
table
weibo_note
add
column
`source_keyword`
varchar
(
255
)
default
''
comment
'搜索来源关键字'
;
alter
table
xhs_note
add
column
`source_keyword`
varchar
(
255
)
default
''
comment
'搜索来源关键字'
;
alter
table
tieba_note
add
column
`source_keyword`
varchar
(
255
)
default
''
comment
'搜索来源关键字'
;
DROP
TABLE
IF
EXISTS
`weibo_creator`
;
...
...
Please
register
or
login
to post a comment