From 2fde86763106fd2b888d4f2692f4e5c0ed6eef0e Mon Sep 17 00:00:00 2001 From: sunguangming Date: Fri, 20 Jun 2025 01:01:48 +0000 Subject: [PATCH] * [misc] fix sql. --- db/zentao.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/db/zentao.sql b/db/zentao.sql index c2dc11fd88..ea6d58dbf4 100755 --- a/db/zentao.sql +++ b/db/zentao.sql @@ -16179,10 +16179,10 @@ CREATE TABLE IF NOT EXISTS `zt_metriclib` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `metricCode` varchar(100) NOT NULL DEFAULT '', `system` tinyint(1) NOT NULL DEFAULT '0', - `program` int(11) NOT NULL DEFAULT '', - `project` int(11) NOT NULL DEFAULT '', - `product` int(11) NOT NULL DEFAULT '', - `execution` int(11) NOT NULL DEFAULT '', + `program` int(11) NOT NULL DEFAULT '0', + `project` int(11) NOT NULL DEFAULT '0', + `product` int(11) NOT NULL DEFAULT '0', + `execution` int(11) NOT NULL DEFAULT '0', `code` char(30) NOT NULL DEFAULT '', `pipeline` char(30) NOT NULL DEFAULT '', `repo` char(30) NOT NULL DEFAULT '',