Update sphinx_make.py

This commit is contained in:
Mr Chen 2024-05-21 00:15:26 +08:00
parent 1ce841eac9
commit 9dcb028158
1 changed files with 0 additions and 2 deletions

View File

@ -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;
'''