* [task#149678,done,1h,0h] Finish create joint testtask.

This commit is contained in:
wangyuting
2025-11-18 08:31:32 +08:00
parent 2eddaac219
commit fc6ba7def9
+12
View File
@@ -0,0 +1,12 @@
CREATE TABLE `zt_testtaskproduct` (
`id` int NOT NULL AUTO_INCREMENT,
`product` int NOT NULL,
`build` int NOT NULL,
`task` int NOT NULL,
`execution` int NOT NULL default '0',
`project` int NOT NULL default '0',
PRIMARY KEY (`id`),
UNIQUE KEY `product_build` (`product`,`build`,`task`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `zt_testtask` ADD `joint` enum('0','1') NOT NULL DEFAULT '0' AFTER `build`;