You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udisyncdl-java/数据库更新脚本.sql

7 lines
274 B
SQL

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

ALTER TABLE `udidl_test`.`company`
ADD COLUMN `taskType` int NULL COMMENT '任务类型: 0下载任务 1更新任务' AFTER `id`;
ALTER TABLE `udidl_test`.`job_log`
ADD COLUMN `taskType` varchar(255) NULL COMMENT '任务类型' AFTER `lastUploadRequest`;