* [story#60489,0.5h] add builder to pivot.

This commit is contained in:
qixinzhi
2024-09-04 16:10:43 +08:00
committed by 代婷婷
parent 6a348cf9e0
commit 6b07831a4c
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -16,4 +16,5 @@ UPDATE `zt_doc` SET `order` = id;
ALTER TABLE `zt_story` ADD `verifiedDate` datetime NULL AFTER `retractedDate`;
ALTER TABLE `zt_pivot` ADD `mode` enum('text', 'builder') not NULL default 'builder' AFTER `driver`;
ALTER TABLE `zt_pivot` ADD `builder` mediumtext AFTER `sql`;
UPDATE `zt_pivot` SET `mode` = 'text';
+1
View File
@@ -15417,6 +15417,7 @@ CREATE TABLE IF NOT EXISTS `zt_pivot` (
`acl` enum('open','private') NOT NULL DEFAULT 'open',
`whitelist` text NULL,
`sql` mediumtext NULL,
`builder` mediumtext NULL,
`fields` mediumtext NULL,
`langs` mediumtext NULL,
`vars` mediumtext NULL,