From 9dcb028158d2a00c317dc11629abe82ed64cbbf8 Mon Sep 17 00:00:00 2001 From: Mr Chen Date: Tue, 21 May 2024 00:15:26 +0800 Subject: [PATCH] Update sphinx_make.py --- plugins/sphinx/class/sphinx_make.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/sphinx/class/sphinx_make.py b/plugins/sphinx/class/sphinx_make.py index c145191ed..1213e4b14 100644 --- a/plugins/sphinx/class/sphinx_make.py +++ b/plugins/sphinx/class/sphinx_make.py @@ -72,10 +72,8 @@ class sphinxMake(): def createSql(self, db): conf = ''' 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 DEFAULT '0', - PRIMARY KEY (`id`), KEY `table` (`table`) ) ENGINE=InnoDB CHARSET=utf8mb4; '''