From 1ce841eac9583a936910f1b44fddb1927187d95b Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Tue, 21 May 2024 00:12:15 +0800 Subject: [PATCH] Update sphinx_make.py --- plugins/sphinx/class/sphinx_make.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sphinx/class/sphinx_make.py b/plugins/sphinx/class/sphinx_make.py index 50de9e97e..c145191ed 100644 --- a/plugins/sphinx/class/sphinx_make.py +++ b/plugins/sphinx/class/sphinx_make.py @@ -74,7 +74,7 @@ class sphinxMake(): CREATE TABLE IF NOT EXISTS `{$DB_NAME}`.`{$TABLE_NAME}` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `table` varchar(200) NOT NULL, - `max_id` bigint(20) unsigned NOT NULL DEFAULT '0', + `max_id` bigint(20) unsigned DEFAULT '0', PRIMARY KEY (`id`), KEY `table` (`table`) ) ENGINE=InnoDB CHARSET=utf8mb4;