From 4849eddedc829e210ea094a63a8327fe936733fe Mon Sep 17 00:00:00 2001 From: dingguodong Date: Wed, 14 Jul 2021 14:00:37 +0800 Subject: [PATCH] * Correct bad spelled word. --- db/update15.0.3.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/update15.0.3.sql b/db/update15.0.3.sql index 515744cb87..4b67f4492a 100644 --- a/db/update15.0.3.sql +++ b/db/update15.0.3.sql @@ -5,8 +5,8 @@ REPLACE INTO `zt_config` (`owner`, `module`, `section`, `key`, `value`) VALUES ( ALTER TABLE `zt_storyestimate` MODIFY COLUMN `average` float NOT NULL; ALTER TABLE `zt_jenkins` ADD COLUMN `type` char(30) NOT NULL AFTER `id`; -ALTER TABLE `zt_jenkins` ADD COLUMN `pivate` char(32) NOT NULL AFTER `token`; -RENAME TABLE `zt_jenkins` to `zt_pipeline`; +ALTER TABLE `zt_jenkins` ADD COLUMN `private` char(32) NOT NULL AFTER `token`; +RENAME TABLE `zt_jenkins` TO `zt_pipeline`; ALTER TABLE `zt_relation` DROP INDEX `relation`, ADD UNIQUE INDEX `relation`(`product`, `relation`, `AType`, `BType`, `AID`, `BID`) USING BTREE;