fix(DB): MariaDB Imports (#14841)

This commit is contained in:
Revision
2023-02-01 14:11:28 +01:00
committed by GitHub
parent b94d5b94ae
commit c3dd1b7a5c
392 changed files with 395 additions and 395 deletions

View File

@@ -19,7 +19,7 @@ DROP TABLE IF EXISTS `characters`;
CREATE TABLE IF NOT EXISTS `characters` (
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`account` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
`name` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`name` varchar(12) NOT NULL,
`race` tinyint unsigned NOT NULL DEFAULT '0',
`class` tinyint unsigned NOT NULL DEFAULT '0',
`gender` tinyint unsigned NOT NULL DEFAULT '0',
@@ -100,7 +100,7 @@ CREATE TABLE IF NOT EXISTS `characters` (
KEY `idx_account` (`account`),
KEY `idx_online` (`online`),
KEY `idx_name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System';
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
-- Dumping data for table acore_characters.characters: ~0 rows (approximately)
DELETE FROM `characters`;