song_playlist_relation添加is_del字段
This commit is contained in:
@@ -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 '最后更新时间',
|
||||
|
Reference in New Issue
Block a user