feat(DB/Account): Delete auto increment in account table (#10879)
This commit is contained in:
parent
7d7c8b686a
commit
35d58463bf
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ CREATE TABLE IF NOT EXISTS `account` (
|
|||
`totaltime` INT unsigned NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `idx_username` (`username`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COMMENT='Account System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Account System';
|
||||
|
||||
-- Дамп данных таблицы acore_auth.account: ~0 rows (приблизительно)
|
||||
DELETE FROM `account`;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue