1
0
Code Issues Pull Requests Projects Releases Wiki Activity GitHub Gitee

song_playlist_relation添加is_del字段

This commit is contained in:
2022-11-09 16:50:30 +08:00
parent b7fc10de63
commit 8efbbec9c0
4 changed files with 7 additions and 4 deletions

View File

@@ -105,6 +105,7 @@ CREATE TABLE `playlist` (
CREATE TABLE `song_playlist_relation` (
`song_id` int(10) unsigned NOT NULL COMMENT '歌曲id',
`playlist_id` int(10) unsigned NOT NULL COMMENT '歌单id',
`is_del` tinyint(4) NOT NULL DEFAULT 0 COMMENT '歌曲是否从歌单中删除 0-未删除 1-删除',
`alg` varchar(20) DEFAULT NULL COMMENT '保留字段',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '爬取时间',
`modify_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',