* [perf] Add cycleConfig field for zt_doc table.

This commit is contained in:
wangyidong
2025-09-02 11:49:07 +08:00
parent e255b84585
commit 568feb126b
+1
View File
@@ -1,4 +1,5 @@
ALTER TABLE `zt_doc` ADD `cycle` char(10) COLLATE 'utf8mb4_general_ci' NOT NULL DEFAULT '' AFTER `chapterType`;
ALTER TABLE `zt_doc` ADD `objects` text COLLATE 'utf8mb4_general_ci' NULL AFTER `templateDesc`;
ALTER TABLE `zt_doc` ADD `cycleConfig` text COLLATE 'utf8mb4_general_ci' NULL AFTER `cycle`;
CREATE INDEX `templateType` ON `zt_doc`(`templateType`);