* Add object categoryVersion field.

This commit is contained in:
wangyuting
2025-09-18 08:33:36 +08:00
parent d953ad0e27
commit 891e666607
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -64,3 +64,4 @@ ALTER TABLE `zt_review` ADD `deliverable` mediumint(8) unsigned NOT NULL DEFAULT
UPDATE `zt_review` SET `status` = 'reviewing' WHERE `status` = 'wait';
ALTER TABLE `zt_object` ADD `status` varchar(20) NOT NULL DEFAULT '' AFTER `type`;
ALTER TABLE `zt_object` ADD `categoryVersion` text DEFAULT NULL AFTER `category`;
+1
View File
@@ -14311,6 +14311,7 @@ CREATE TABLE IF NOT EXISTS `zt_object` (
`from` mediumint(8) NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`category` char(30) NOT NULL DEFAULT '',
`categoryVersion` text DEFAULT NULL,
`version` varchar(255) NOT NULL DEFAULT '',
`type` enum('reviewed','taged') NOT NULL DEFAULT 'reviewed',
`status` varchar(20) NOT NULL DEFAULT '',