* Fix bug#34211.

This commit is contained in:
朱金勇
2023-04-17 05:44:18 +00:00
parent 6921b87571
commit 049cf321f6
2 changed files with 14 additions and 6 deletions
+8
View File
@@ -948,6 +948,14 @@ CHANGE `birthday` `birthday` date NULL,
CHANGE `join` `join` date NULL,
CHANGE `locked` `locked` datetime NULL;
ALTER TABLE `zt_webhook`
CHANGE `products` `products` text NULL,
CHANGE `executions` `executions` text NULL,
CHANGE `params` `params` varchar(100) NOT NULL DEFAULT '',
CHANGE `actions` `actions` text NULL,
CHANGE `editedBy` `editedBy` varchar(30) NOT NULL DEFAULT '',
CHANGE `editedDate` `editedDate` datetime NULL;
ALTER TABLE `zt_workestimation`
CHANGE `editedBy` `editedBy` varchar(30) NOT NULL DEFAULT '',
CHANGE `editedDate` `editedDate` datetime NULL,
+6 -6
View File
@@ -2045,15 +2045,15 @@ CREATE TABLE IF NOT EXISTS `zt_webhook` (
`secret` varchar(255) NOT NULL,
`contentType` varchar(30) NOT NULL DEFAULT 'application/json',
`sendType` enum('sync','async') NOT NULL DEFAULT 'sync',
`products` text NOT NULL,
`executions` text NOT NULL,
`params` varchar(100) NOT NULL,
`actions` text NOT NULL,
`products` text NULL,
`executions` text NULL,
`params` varchar(100) NOT NULL DEFAULT '',
`actions` text NULL,
`desc` text NOT NULL,
`createdBy` varchar(30) NOT NULL,
`createdDate` datetime NOT NULL,
`editedBy` varchar(30) NOT NULL,
`editedDate` datetime NOT NULL,
`editedBy` varchar(30) NOT NULL DEFAULT '',
`editedDate` datetime NULL,
`deleted` enum('0', '1') NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;