update
This commit is contained in:
		@@ -31,7 +31,7 @@ CREATE TABLE `album` (
 | 
			
		||||
  `company` varchar(100) 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 '最后更新时间',
 | 
			
		||||
  `version` tinyint(4) NOT NULL DEFAULT '1' COMMENT '数据记录版本(如果有字段调整则整体+1)',
 | 
			
		||||
  `version` tinyint(4) NOT NULL DEFAULT 1 COMMENT '数据记录版本(如果有字段调整则整体+1)',
 | 
			
		||||
  PRIMARY KEY (`album_id`)
 | 
			
		||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
 | 
			
		||||
 | 
			
		||||
@@ -93,7 +93,8 @@ CREATE TABLE `comment_progress` (
 | 
			
		||||
  `total` int(10) NOT NULL DEFAULT 0 COMMENT '评论总数',
 | 
			
		||||
  `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '爬取时间',
 | 
			
		||||
  `modify_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '最后更新时间',
 | 
			
		||||
  PRIMARY KEY (`song_id`)
 | 
			
		||||
  PRIMARY KEY (`song_id`),
 | 
			
		||||
  INDEX `current_status` (`current_status`)
 | 
			
		||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
 | 
			
		||||
 | 
			
		||||
CREATE TABLE `log` (
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user