feat(DB/Account): Delete auto increment in account table (#10879)

This commit is contained in:
Walter Pagani
2022-03-02 19:09:08 -03:00
committed by GitHub
parent 7d7c8b686a
commit 35d58463bf

View File

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