mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
@@ -18,32 +18,32 @@
|
||||
DROP TABLE IF EXISTS `account`;
|
||||
CREATE TABLE IF NOT EXISTS `account` (
|
||||
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Identifier',
|
||||
`username` varchar(32) NOT NULL DEFAULT '',
|
||||
`username` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`salt` binary(32) NOT NULL,
|
||||
`verifier` binary(32) NOT NULL,
|
||||
`session_key` binary(40) DEFAULT NULL,
|
||||
`totp_secret` varbinary(128) DEFAULT NULL,
|
||||
`email` varchar(255) NOT NULL DEFAULT '',
|
||||
`reg_mail` varchar(255) NOT NULL DEFAULT '',
|
||||
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`reg_mail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`joindate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`last_ip` varchar(15) NOT NULL DEFAULT '127.0.0.1',
|
||||
`last_attempt_ip` varchar(15) NOT NULL DEFAULT '127.0.0.1',
|
||||
`last_ip` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||||
`last_attempt_ip` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||||
`failed_logins` int unsigned NOT NULL DEFAULT '0',
|
||||
`locked` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`lock_country` varchar(2) NOT NULL DEFAULT '00',
|
||||
`lock_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '00',
|
||||
`last_login` timestamp NULL DEFAULT NULL,
|
||||
`online` int unsigned NOT NULL DEFAULT '0',
|
||||
`expansion` tinyint unsigned NOT NULL DEFAULT '2',
|
||||
`mutetime` bigint NOT NULL DEFAULT '0',
|
||||
`mutereason` varchar(255) NOT NULL DEFAULT '',
|
||||
`muteby` varchar(50) NOT NULL DEFAULT '',
|
||||
`mutereason` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`muteby` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`locale` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`os` varchar(3) NOT NULL DEFAULT '',
|
||||
`os` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`recruiter` int unsigned NOT NULL DEFAULT '0',
|
||||
`totaltime` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `idx_username` (`username`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Account System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Account System';
|
||||
|
||||
-- Dumping data for table acore_auth.account: ~0 rows (approximately)
|
||||
DELETE FROM `account`;
|
||||
|
||||
@@ -20,9 +20,9 @@ CREATE TABLE IF NOT EXISTS `account_access` (
|
||||
`id` int unsigned NOT NULL,
|
||||
`gmlevel` tinyint unsigned NOT NULL,
|
||||
`RealmID` int NOT NULL DEFAULT '-1',
|
||||
`comment` varchar(255) DEFAULT '',
|
||||
`comment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '',
|
||||
PRIMARY KEY (`id`,`RealmID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_auth.account_access: ~0 rows (approximately)
|
||||
DELETE FROM `account_access`;
|
||||
|
||||
@@ -20,11 +20,11 @@ CREATE TABLE IF NOT EXISTS `account_banned` (
|
||||
`id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account id',
|
||||
`bandate` int unsigned NOT NULL DEFAULT '0',
|
||||
`unbandate` int unsigned NOT NULL DEFAULT '0',
|
||||
`bannedby` varchar(50) NOT NULL,
|
||||
`banreason` varchar(255) NOT NULL,
|
||||
`bannedby` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`banreason` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`active` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`id`,`bandate`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Ban List';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Ban List';
|
||||
|
||||
-- Dumping data for table acore_auth.account_banned: ~0 rows (approximately)
|
||||
DELETE FROM `account_banned`;
|
||||
|
||||
@@ -20,10 +20,10 @@ CREATE TABLE IF NOT EXISTS `account_muted` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`mutedate` int unsigned NOT NULL DEFAULT '0',
|
||||
`mutetime` int unsigned NOT NULL DEFAULT '0',
|
||||
`mutedby` varchar(50) NOT NULL,
|
||||
`mutereason` varchar(255) NOT NULL,
|
||||
`mutedby` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`mutereason` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`guid`,`mutedate`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='mute List';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='mute List';
|
||||
|
||||
-- Dumping data for table acore_auth.account_muted: ~0 rows (approximately)
|
||||
DELETE FROM `account_muted`;
|
||||
|
||||
@@ -20,9 +20,9 @@ CREATE TABLE IF NOT EXISTS `autobroadcast` (
|
||||
`realmid` int NOT NULL DEFAULT '-1',
|
||||
`id` tinyint unsigned NOT NULL AUTO_INCREMENT,
|
||||
`weight` tinyint unsigned DEFAULT '1',
|
||||
`text` longtext NOT NULL,
|
||||
`text` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`id`,`realmid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_auth.autobroadcast: ~0 rows (approximately)
|
||||
DELETE FROM `autobroadcast`;
|
||||
|
||||
@@ -21,14 +21,14 @@ CREATE TABLE IF NOT EXISTS `build_info` (
|
||||
`majorVersion` int DEFAULT NULL,
|
||||
`minorVersion` int DEFAULT NULL,
|
||||
`bugfixVersion` int DEFAULT NULL,
|
||||
`hotfixVersion` char(3) DEFAULT NULL,
|
||||
`winAuthSeed` varchar(32) DEFAULT NULL,
|
||||
`win64AuthSeed` varchar(32) DEFAULT NULL,
|
||||
`mac64AuthSeed` varchar(32) DEFAULT NULL,
|
||||
`winChecksumSeed` varchar(40) DEFAULT NULL,
|
||||
`macChecksumSeed` varchar(40) DEFAULT NULL,
|
||||
`hotfixVersion` char(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`winAuthSeed` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`win64AuthSeed` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`mac64AuthSeed` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`winChecksumSeed` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`macChecksumSeed` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
PRIMARY KEY (`build`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_auth.build_info: ~11 rows (approximately)
|
||||
DELETE FROM `build_info`;
|
||||
|
||||
@@ -17,13 +17,13 @@
|
||||
-- Dumping structure for table acore_auth.ip_banned
|
||||
DROP TABLE IF EXISTS `ip_banned`;
|
||||
CREATE TABLE IF NOT EXISTS `ip_banned` (
|
||||
`ip` varchar(15) NOT NULL DEFAULT '127.0.0.1',
|
||||
`ip` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||||
`bandate` int unsigned NOT NULL,
|
||||
`unbandate` int unsigned NOT NULL,
|
||||
`bannedby` varchar(50) NOT NULL DEFAULT '[Console]',
|
||||
`banreason` varchar(255) NOT NULL DEFAULT 'no reason',
|
||||
`bannedby` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '[Console]',
|
||||
`banreason` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no reason',
|
||||
PRIMARY KEY (`ip`,`bandate`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Banned IPs';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Banned IPs';
|
||||
|
||||
-- Dumping data for table acore_auth.ip_banned: ~0 rows (approximately)
|
||||
DELETE FROM `ip_banned`;
|
||||
|
||||
@@ -19,10 +19,10 @@ DROP TABLE IF EXISTS `logs`;
|
||||
CREATE TABLE IF NOT EXISTS `logs` (
|
||||
`time` int unsigned NOT NULL,
|
||||
`realm` int unsigned NOT NULL,
|
||||
`type` varchar(250) NOT NULL,
|
||||
`type` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`level` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`string` text
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
`string` text COLLATE utf8mb4_unicode_ci
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_auth.logs: ~0 rows (approximately)
|
||||
DELETE FROM `logs`;
|
||||
|
||||
@@ -21,13 +21,13 @@ CREATE TABLE IF NOT EXISTS `logs_ip_actions` (
|
||||
`account_id` int unsigned NOT NULL COMMENT 'Account ID',
|
||||
`character_guid` int unsigned NOT NULL COMMENT 'Character Guid',
|
||||
`type` tinyint unsigned NOT NULL,
|
||||
`ip` varchar(15) NOT NULL DEFAULT '127.0.0.1',
|
||||
`systemnote` text COMMENT 'Notes inserted by system',
|
||||
`ip` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||||
`systemnote` text COLLATE utf8mb4_unicode_ci COMMENT 'Notes inserted by system',
|
||||
`unixtime` int unsigned NOT NULL COMMENT 'Unixtime',
|
||||
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp',
|
||||
`comment` text COMMENT 'Allows users to add a comment',
|
||||
`comment` text COLLATE utf8mb4_unicode_ci COMMENT 'Allows users to add a comment',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Used to log ips of individual actions';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Used to log ips of individual actions';
|
||||
|
||||
-- Dumping data for table acore_auth.logs_ip_actions: ~0 rows (approximately)
|
||||
DELETE FROM `logs_ip_actions`;
|
||||
|
||||
34
data/sql/base/db_auth/motd.sql
Normal file
34
data/sql/base/db_auth/motd.sql
Normal file
@@ -0,0 +1,34 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Host: 127.0.0.1
|
||||
-- Server version: 8.0.29 - MySQL Community Server - GPL
|
||||
-- Server OS: Win64
|
||||
-- HeidiSQL Version: 12.0.0.6468
|
||||
-- --------------------------------------------------------
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET NAMES utf8 */;
|
||||
/*!50503 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
-- Dumping structure for table acore_auth.motd
|
||||
DROP TABLE IF EXISTS `motd`;
|
||||
CREATE TABLE IF NOT EXISTS `motd` (
|
||||
`realmid` int NOT NULL,
|
||||
`text` longtext COLLATE utf8mb4_unicode_ci,
|
||||
PRIMARY KEY (`realmid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_auth.motd: ~1 rows (approximately)
|
||||
DELETE FROM `motd`;
|
||||
INSERT INTO `motd` (`realmid`, `text`) VALUES
|
||||
(-1, 'Welcome to an AzerothCore server.');
|
||||
|
||||
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
||||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
|
||||
@@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `realmcharacters` (
|
||||
`numchars` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`realmid`,`acctid`),
|
||||
KEY `acctid` (`acctid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Realm Character Tracker';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Realm Character Tracker';
|
||||
|
||||
-- Dumping data for table acore_auth.realmcharacters: ~0 rows (approximately)
|
||||
DELETE FROM `realmcharacters`;
|
||||
|
||||
@@ -18,10 +18,10 @@
|
||||
DROP TABLE IF EXISTS `realmlist`;
|
||||
CREATE TABLE IF NOT EXISTS `realmlist` (
|
||||
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(32) NOT NULL DEFAULT '',
|
||||
`address` varchar(255) NOT NULL DEFAULT '127.0.0.1',
|
||||
`localAddress` varchar(255) NOT NULL DEFAULT '127.0.0.1',
|
||||
`localSubnetMask` varchar(255) NOT NULL DEFAULT '255.255.255.0',
|
||||
`name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||||
`localAddress` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '127.0.0.1',
|
||||
`localSubnetMask` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '255.255.255.0',
|
||||
`port` smallint unsigned NOT NULL DEFAULT '8085',
|
||||
`icon` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`flag` tinyint unsigned NOT NULL DEFAULT '2',
|
||||
@@ -32,7 +32,7 @@ CREATE TABLE IF NOT EXISTS `realmlist` (
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `idx_name` (`name`),
|
||||
CONSTRAINT `realmlist_chk_1` CHECK ((`population` >= 0))
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COMMENT='Realm System';
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Realm System';
|
||||
|
||||
-- Dumping data for table acore_auth.realmlist: ~0 rows (approximately)
|
||||
DELETE FROM `realmlist`;
|
||||
|
||||
@@ -18,9 +18,9 @@
|
||||
DROP TABLE IF EXISTS `secret_digest`;
|
||||
CREATE TABLE IF NOT EXISTS `secret_digest` (
|
||||
`id` int unsigned NOT NULL,
|
||||
`digest` varchar(100) NOT NULL,
|
||||
`digest` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_auth.secret_digest: ~0 rows (approximately)
|
||||
DELETE FROM `secret_digest`;
|
||||
|
||||
@@ -17,35 +17,26 @@
|
||||
-- Dumping structure for table acore_auth.updates
|
||||
DROP TABLE IF EXISTS `updates`;
|
||||
CREATE TABLE IF NOT EXISTS `updates` (
|
||||
`name` varchar(200) NOT NULL COMMENT 'filename with extension of the update.',
|
||||
`hash` char(40) DEFAULT '' COMMENT 'sha1 hash of the sql file.',
|
||||
`state` enum('RELEASED','CUSTOM','MODULE','ARCHIVED') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if an update is released or archived.',
|
||||
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'filename with extension of the update.',
|
||||
`hash` char(40) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'sha1 hash of the sql file.',
|
||||
`state` enum('RELEASED','CUSTOM','MODULE','ARCHIVED') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if an update is released or archived.',
|
||||
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'timestamp when the query was applied.',
|
||||
`speed` int unsigned NOT NULL DEFAULT '0' COMMENT 'time the query takes to apply in ms.',
|
||||
PRIMARY KEY (`name`) USING BTREE
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='List of all applied updates in this database.';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of all applied updates in this database.';
|
||||
|
||||
-- Dumping data for table acore_auth.updates: 32 rows
|
||||
-- Dumping data for table acore_auth.updates: ~35 rows (approximately)
|
||||
DELETE FROM `updates`;
|
||||
/*!40000 ALTER TABLE `updates` DISABLE KEYS */;
|
||||
INSERT INTO `updates` (`name`, `hash`, `state`, `timestamp`, `speed`) VALUES
|
||||
('2021_01_25_00.sql', '5FA7F802E04CBF66848938FE7FC14FC4CC815F3C', 'ARCHIVED', '2021-10-15 00:59:32', 51),
|
||||
('2021_03_21_00.sql', '1E98E516DAD70DC101E339950C1BCC1D15BE78B6', 'ARCHIVED', '2021-10-15 00:59:32', 102),
|
||||
('2021_03_23_00.sql', '0EA578B7108559B4E54CAE99714F695659EDE6E5', 'ARCHIVED', '2021-10-15 00:59:32', 77),
|
||||
('2021_05_13_00.sql', 'B9CABD6897489B20D6523AEDC61AD9075BCA398A', 'ARCHIVED', '2021-10-15 00:59:32', 104),
|
||||
('2021_05_26_00.sql', '435822D9482BA2C5F0D8E54E3A587611A453B0FA', 'ARCHIVED', '2021-10-15 00:59:32', 71),
|
||||
('2021_05_30_00.sql', 'E70A61123CBE2DC8AF332D03DF1889EB0DF3CEAB', 'ARCHIVED', '2021-10-15 00:59:32', 64),
|
||||
('2021_06_17_00.sql', '36686970C025046FD49FA4BF6F8283A1AE2BE8F3', 'ARCHIVED', '2021-10-15 00:59:33', 52),
|
||||
('2016_08_25_01.sql', 'A5A2BE04C8E8E85CD177B8684DFFEACF71C9CF69', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2016_07_09_00.sql', 'B692C4D5E96D26616E1E655D99DD27F6AC4FFDA6', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2019_04_13_00.sql', '183C28E079DAB46AD6F7C0617E19346CAD043141', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2016_09_04_00.sql', '420ACF7160BF5549BC298EB6A1319969789DA140', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2017_08_19_00.sql', 'E4457FFFFC0D3F86750F07CF88F549529E1B27E5', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2016_08_25_00.sql', '707016C338350676C814D7926DFB6081E57091C3', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2016_07_09_01.sql', 'DE551E4708FE31AAC60CEF69466BBC5DFAC46F79', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2016_07_10_00.sql', '0AE2F7FB1E9C1E2BC2870D0EB817F3C87E0A39B3', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2016_08_25_00.sql', '707016C338350676C814D7926DFB6081E57091C3', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2016_08_25_01.sql', 'A5A2BE04C8E8E85CD177B8684DFFEACF71C9CF69', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2016_09_04_00.sql', '420ACF7160BF5549BC298EB6A1319969789DA140', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2016_11_18_00.sql', '92D22B3A45466470239402367D94C3791A243EF7', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2016_11_19_00.sql', 'C55E73648F661F40237B03F266F7169D231B3D8D', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2017_08_19_00.sql', 'E4457FFFFC0D3F86750F07CF88F549529E1B27E5', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2017_08_20_01.sql', 'E6190311E1A12E259C6CD21ACFC8BAA1D3F597DF', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2017_12_05_00.sql', '475860B881DE6E9CAC93AD3B37E7AAA8D63FB1B9', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2018_01_21_00.sql', '570FC5FC653D81B0E498E3EAB6706C9868CE8079', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
@@ -53,15 +44,25 @@ INSERT INTO `updates` (`name`, `hash`, `state`, `timestamp`, `speed`) VALUES
|
||||
('2019_01_05_00.sql', '2449121ABB0D5004BF6941B340F5C294AD95EBE9', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2019_02_08_00.sql', '18FF48FC1B1C238D44198FA1E2D422BAB4C9C338', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2019_02_17_00.sql', '1F4C4A15313A261088E40909DCCAA068EAAAAAAE', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2019_04_13_00.sql', '183C28E079DAB46AD6F7C0617E19346CAD043141', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2020_02_07_00.sql', '9549BF7354B4FA5A661EC094A2C3AAF665678152', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('2021_01_25_00.sql', '5FA7F802E04CBF66848938FE7FC14FC4CC815F3C', 'ARCHIVED', '2021-10-15 00:59:32', 51),
|
||||
('2021_03_21_00.sql', '1E98E516DAD70DC101E339950C1BCC1D15BE78B6', 'ARCHIVED', '2021-10-15 00:59:32', 102),
|
||||
('2021_03_23_00.sql', '0EA578B7108559B4E54CAE99714F695659EDE6E5', 'ARCHIVED', '2021-10-15 00:59:32', 77),
|
||||
('2021_05_13_00.sql', 'B9CABD6897489B20D6523AEDC61AD9075BCA398A', 'ARCHIVED', '2021-10-15 00:59:32', 104),
|
||||
('2021_05_26_00.sql', '435822D9482BA2C5F0D8E54E3A587611A453B0FA', 'ARCHIVED', '2021-10-15 00:59:32', 71),
|
||||
('2021_05_30_00.sql', 'E70A61123CBE2DC8AF332D03DF1889EB0DF3CEAB', 'ARCHIVED', '2021-10-15 00:59:32', 64),
|
||||
('2021_06_17_00.sql', '36686970C025046FD49FA4BF6F8283A1AE2BE8F3', 'ARCHIVED', '2021-10-15 00:59:33', 52),
|
||||
('2021_10_14_00.sql', 'D4378AFC454DF8351A6DE6C6B6144F82C62980A5', 'ARCHIVED', '2021-10-15 00:59:33', 53),
|
||||
('2021_10_14_01_auth.sql', 'A4495131ADD2AB4AB6682C1621683963247368F0', 'ARCHIVED', '2022-01-22 02:36:20', 20),
|
||||
('2021_11_06_00.sql', 'E08D11C492289879C460BB063457DAD968545752', 'ARCHIVED', '2022-01-22 02:36:20', 39),
|
||||
('2022_01_23_00.sql', '6291006CD2B38EEE02EDDD8AEB6A952477854C77', 'ARCHIVED', '2022-04-24 18:19:14', 28),
|
||||
('2022_04_24_00.sql', 'CFB8D5B896B2A5900F5E5A2262B356E0842405BB', 'ARCHIVED', '2022-08-21 12:56:35', 34),
|
||||
('2022_04_28_00.sql', '26108CBD35D4B885A90CEC25665DCBC00FD06809', 'ARCHIVED', '2022-08-21 12:56:35', 30),
|
||||
('2022_08_21_00.sql', 'E333B1A3FD1A25298D29B8FCAA0EE8AE5985202F', 'RELEASED', '2023-01-31 23:19:58', 28);
|
||||
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
|
||||
('2022_08_21_00.sql', 'E333B1A3FD1A25298D29B8FCAA0EE8AE5985202F', 'ARCHIVED', '2023-01-31 23:19:58', 28),
|
||||
('2023_01_31_00.sql', '0ACDD35EC9745231BCFA701B78056DEF94D0CC53', 'RELEASED', '2023-04-23 21:18:58', 36),
|
||||
('2023_02_20_00.sql', 'B2A8F337A3699322D19729AF07ADC5607FAEEF83', 'RELEASED', '2023-04-23 21:18:58', 56),
|
||||
('2023_04_23_00.sql', 'F853503AAFB22DB3493F2ADC8B6BBB7B648EDBA9', 'RELEASED', '2023-04-23 21:18:59', 522);
|
||||
|
||||
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
||||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
||||
|
||||
@@ -17,19 +17,17 @@
|
||||
-- Dumping structure for table acore_auth.updates_include
|
||||
DROP TABLE IF EXISTS `updates_include`;
|
||||
CREATE TABLE IF NOT EXISTS `updates_include` (
|
||||
`path` varchar(200) NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
|
||||
`state` enum('RELEASED','ARCHIVED','CUSTOM') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
|
||||
`path` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
|
||||
`state` enum('RELEASED','ARCHIVED','CUSTOM') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
|
||||
PRIMARY KEY (`path`) USING BTREE
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='List of directories where we want to include sql updates.';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of directories where we want to include sql updates.';
|
||||
|
||||
-- Dumping data for table acore_auth.updates_include: 3 rows
|
||||
-- Dumping data for table acore_auth.updates_include: ~3 rows (approximately)
|
||||
DELETE FROM `updates_include`;
|
||||
/*!40000 ALTER TABLE `updates_include` DISABLE KEYS */;
|
||||
INSERT INTO `updates_include` (`path`, `state`) VALUES
|
||||
('$/data/sql/updates/db_auth', 'RELEASED'),
|
||||
('$/data/sql/archive/db_auth', 'ARCHIVED'),
|
||||
('$/data/sql/custom/db_auth', 'CUSTOM'),
|
||||
('$/data/sql/archive/db_auth', 'ARCHIVED');
|
||||
/*!40000 ALTER TABLE `updates_include` ENABLE KEYS */;
|
||||
('$/data/sql/updates/db_auth', 'RELEASED');
|
||||
|
||||
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
||||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
||||
|
||||
@@ -21,17 +21,18 @@ CREATE TABLE IF NOT EXISTS `uptime` (
|
||||
`starttime` int unsigned NOT NULL DEFAULT '0',
|
||||
`uptime` int unsigned NOT NULL DEFAULT '0',
|
||||
`maxplayers` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`revision` varchar(255) NOT NULL DEFAULT 'AzerothCore',
|
||||
`revision` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'AzerothCore',
|
||||
PRIMARY KEY (`realmid`,`starttime`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Uptime system';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Uptime system';
|
||||
|
||||
-- Dumping data for table acore_auth.uptime: ~4 rows (approximately)
|
||||
-- Dumping data for table acore_auth.uptime: ~5 rows (approximately)
|
||||
DELETE FROM `uptime`;
|
||||
INSERT INTO `uptime` (`realmid`, `starttime`, `uptime`, `maxplayers`, `revision`) VALUES
|
||||
(1, 1550400304, 121, 0, 'AzerothCore rev. 2bcedc2859e7 2019-02-17 10:04:09 +0100 (master branch) (Unix, Debug)'),
|
||||
(1, 1550400454, 1440, 0, 'AzerothCore rev. 2bcedc2859e7 2019-02-17 10:04:09 +0100 (master branch) (Unix, Debug)'),
|
||||
(1, 1661068597, 0, 0, 'AzerothCore rev. 5d6dfca80cf1 2022-08-21 09:48:09 +0200 (new-squash-POGGIES branch) (Win64, RelWithDebInfo, Static)'),
|
||||
(1, 1675207201, 0, 0, 'AzerothCore rev. e7cbc80a913b 2023-01-31 22:22:22 +0000 (master branch) (Win64, RelWithDebInfo, Static)');
|
||||
(1, 1675207201, 0, 0, 'AzerothCore rev. e7cbc80a913b 2023-01-31 22:22:22 +0000 (master branch) (Win64, RelWithDebInfo, Static)'),
|
||||
(1, 1682284745, 0, 0, 'AzerothCore rev. 5dc6f9cf78f1 2023-04-23 21:03:18 +0000 (master branch) (Win64, RelWithDebInfo, Static)');
|
||||
|
||||
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
||||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
||||
|
||||
@@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `account_data` (
|
||||
`time` int unsigned NOT NULL DEFAULT '0',
|
||||
`data` blob NOT NULL,
|
||||
PRIMARY KEY (`accountId`,`type`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.account_data: ~0 rows (approximately)
|
||||
DELETE FROM `account_data`;
|
||||
|
||||
@@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `account_instance_times` (
|
||||
`instanceId` int unsigned NOT NULL DEFAULT '0',
|
||||
`releaseTime` bigint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`accountId`,`instanceId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.account_instance_times: ~0 rows (approximately)
|
||||
DELETE FROM `account_instance_times`;
|
||||
|
||||
@@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `account_tutorial` (
|
||||
`tut6` int unsigned NOT NULL DEFAULT '0',
|
||||
`tut7` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`accountId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.account_tutorial: ~0 rows (approximately)
|
||||
DELETE FROM `account_tutorial`;
|
||||
|
||||
@@ -17,10 +17,10 @@
|
||||
-- Dumping structure for table acore_characters.addons
|
||||
DROP TABLE IF EXISTS `addons`;
|
||||
CREATE TABLE IF NOT EXISTS `addons` (
|
||||
`name` varchar(120) NOT NULL DEFAULT '',
|
||||
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`crc` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`name`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Addons';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Addons';
|
||||
|
||||
-- Dumping data for table acore_characters.addons: ~23 rows (approximately)
|
||||
DELETE FROM `addons`;
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
DROP TABLE IF EXISTS `arena_team`;
|
||||
CREATE TABLE IF NOT EXISTS `arena_team` (
|
||||
`arenaTeamId` int unsigned NOT NULL DEFAULT '0',
|
||||
`name` varchar(24) NOT NULL,
|
||||
`name` varchar(24) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`captainGuid` int unsigned NOT NULL DEFAULT '0',
|
||||
`type` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`rating` smallint unsigned NOT NULL DEFAULT '0',
|
||||
@@ -33,7 +33,7 @@ CREATE TABLE IF NOT EXISTS `arena_team` (
|
||||
`borderStyle` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`borderColor` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`arenaTeamId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.arena_team: ~0 rows (approximately)
|
||||
DELETE FROM `arena_team`;
|
||||
|
||||
@@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `arena_team_member` (
|
||||
`seasonWins` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`personalRating` smallint NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`arenaTeamId`,`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.arena_team_member: ~0 rows (approximately)
|
||||
DELETE FROM `arena_team_member`;
|
||||
|
||||
@@ -29,7 +29,7 @@ CREATE TABLE IF NOT EXISTS `auctionhouse` (
|
||||
`deposit` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `item_guid` (`itemguid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.auctionhouse: ~0 rows (approximately)
|
||||
DELETE FROM `auctionhouse`;
|
||||
|
||||
@@ -18,12 +18,12 @@
|
||||
DROP TABLE IF EXISTS `banned_addons`;
|
||||
CREATE TABLE IF NOT EXISTS `banned_addons` (
|
||||
`Id` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
`Name` varchar(255) NOT NULL,
|
||||
`Version` varchar(255) NOT NULL DEFAULT '',
|
||||
`Name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`Version` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`Id`),
|
||||
UNIQUE KEY `idx_name_ver` (`Name`,`Version`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.banned_addons: ~0 rows (approximately)
|
||||
DELETE FROM `banned_addons`;
|
||||
|
||||
@@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `battleground_deserters` (
|
||||
`guid` int unsigned NOT NULL COMMENT 'characters.guid',
|
||||
`type` tinyint unsigned NOT NULL COMMENT 'type of the desertion',
|
||||
`datetime` datetime NOT NULL COMMENT 'datetime of the desertion'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.battleground_deserters: ~0 rows (approximately)
|
||||
DELETE FROM `battleground_deserters`;
|
||||
|
||||
@@ -18,10 +18,10 @@
|
||||
DROP TABLE IF EXISTS `bugreport`;
|
||||
CREATE TABLE IF NOT EXISTS `bugreport` (
|
||||
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Identifier',
|
||||
`type` longtext NOT NULL,
|
||||
`content` longtext NOT NULL,
|
||||
`type` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Debug System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Debug System';
|
||||
|
||||
-- Dumping data for table acore_characters.bugreport: ~0 rows (approximately)
|
||||
DELETE FROM `bugreport`;
|
||||
|
||||
@@ -19,15 +19,15 @@ DROP TABLE IF EXISTS `calendar_events`;
|
||||
CREATE TABLE IF NOT EXISTS `calendar_events` (
|
||||
`id` bigint unsigned NOT NULL DEFAULT '0',
|
||||
`creator` int unsigned NOT NULL DEFAULT '0',
|
||||
`title` varchar(255) NOT NULL DEFAULT '',
|
||||
`description` varchar(255) NOT NULL DEFAULT '',
|
||||
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`type` tinyint unsigned NOT NULL DEFAULT '4',
|
||||
`dungeon` int NOT NULL DEFAULT '-1',
|
||||
`eventtime` int unsigned NOT NULL DEFAULT '0',
|
||||
`flags` int unsigned NOT NULL DEFAULT '0',
|
||||
`time2` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.calendar_events: ~0 rows (approximately)
|
||||
DELETE FROM `calendar_events`;
|
||||
|
||||
@@ -24,9 +24,9 @@ CREATE TABLE IF NOT EXISTS `calendar_invites` (
|
||||
`status` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`statustime` int unsigned NOT NULL DEFAULT '0',
|
||||
`rank` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`text` varchar(255) NOT NULL DEFAULT '',
|
||||
`text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.calendar_invites: ~0 rows (approximately)
|
||||
DELETE FROM `calendar_invites`;
|
||||
|
||||
@@ -18,14 +18,14 @@
|
||||
DROP TABLE IF EXISTS `channels`;
|
||||
CREATE TABLE IF NOT EXISTS `channels` (
|
||||
`channelId` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(128) NOT NULL,
|
||||
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`team` int unsigned NOT NULL,
|
||||
`announce` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
`ownership` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
`password` varchar(32) DEFAULT NULL,
|
||||
`password` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`lastUsed` int unsigned NOT NULL,
|
||||
PRIMARY KEY (`channelId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Channel System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Channel System';
|
||||
|
||||
-- Dumping data for table acore_characters.channels: ~0 rows (approximately)
|
||||
DELETE FROM `channels`;
|
||||
|
||||
@@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `channels_bans` (
|
||||
`playerGUID` int unsigned NOT NULL,
|
||||
`banTime` int unsigned NOT NULL,
|
||||
PRIMARY KEY (`channelId`,`playerGUID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.channels_bans: ~0 rows (approximately)
|
||||
DELETE FROM `channels_bans`;
|
||||
|
||||
@@ -17,14 +17,14 @@
|
||||
-- Dumping structure for table acore_characters.channels_rights
|
||||
DROP TABLE IF EXISTS `channels_rights`;
|
||||
CREATE TABLE IF NOT EXISTS `channels_rights` (
|
||||
`name` varchar(128) NOT NULL,
|
||||
`name` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`flags` int unsigned NOT NULL,
|
||||
`speakdelay` int unsigned NOT NULL,
|
||||
`joinmessage` varchar(255) NOT NULL DEFAULT '',
|
||||
`delaymessage` varchar(255) NOT NULL DEFAULT '',
|
||||
`moderators` text,
|
||||
`joinmessage` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`delaymessage` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`moderators` text COLLATE utf8mb4_unicode_ci,
|
||||
PRIMARY KEY (`name`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.channels_rights: ~0 rows (approximately)
|
||||
DELETE FROM `channels_rights`;
|
||||
|
||||
@@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_account_data` (
|
||||
`time` int unsigned NOT NULL DEFAULT '0',
|
||||
`data` blob NOT NULL,
|
||||
PRIMARY KEY (`guid`,`type`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_account_data: ~0 rows (approximately)
|
||||
DELETE FROM `character_account_data`;
|
||||
|
||||
@@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `character_achievement` (
|
||||
`achievement` smallint unsigned NOT NULL,
|
||||
`date` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`achievement`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_achievement: ~0 rows (approximately)
|
||||
DELETE FROM `character_achievement`;
|
||||
|
||||
@@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_achievement_progress` (
|
||||
`counter` int unsigned NOT NULL,
|
||||
`date` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`criteria`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_achievement_progress: ~0 rows (approximately)
|
||||
DELETE FROM `character_achievement_progress`;
|
||||
|
||||
@@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `character_action` (
|
||||
`action` int unsigned NOT NULL DEFAULT '0',
|
||||
`type` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`spec`,`button`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_action: ~0 rows (approximately)
|
||||
DELETE FROM `character_action`;
|
||||
|
||||
@@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_arena_stats` (
|
||||
`matchMakerRating` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`maxMMR` smallint NOT NULL,
|
||||
PRIMARY KEY (`guid`,`slot`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_arena_stats: ~0 rows (approximately)
|
||||
DELETE FROM `character_arena_stats`;
|
||||
|
||||
@@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `character_aura` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`casterGuid` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Full Global Unique Identifier',
|
||||
`itemGuid` bigint unsigned NOT NULL DEFAULT '0',
|
||||
`spell` mediumint unsigned NOT NULL DEFAULT '0',
|
||||
`spell` int unsigned NOT NULL DEFAULT '0',
|
||||
`effectMask` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`recalculateMask` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`stackCount` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
@@ -34,7 +34,7 @@ CREATE TABLE IF NOT EXISTS `character_aura` (
|
||||
`remainTime` int NOT NULL DEFAULT '0',
|
||||
`remainCharges` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`casterGuid`,`itemGuid`,`spell`,`effectMask`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_aura: ~0 rows (approximately)
|
||||
DELETE FROM `character_aura`;
|
||||
|
||||
@@ -20,11 +20,11 @@ CREATE TABLE IF NOT EXISTS `character_banned` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`bandate` int unsigned NOT NULL DEFAULT '0',
|
||||
`unbandate` int unsigned NOT NULL DEFAULT '0',
|
||||
`bannedby` varchar(50) NOT NULL,
|
||||
`banreason` varchar(255) NOT NULL,
|
||||
`bannedby` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`banreason` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`active` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`guid`,`bandate`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Ban List';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Ban List';
|
||||
|
||||
-- Dumping data for table acore_characters.character_banned: ~0 rows (approximately)
|
||||
DELETE FROM `character_banned`;
|
||||
|
||||
@@ -19,7 +19,7 @@ DROP TABLE IF EXISTS `character_battleground_random`;
|
||||
CREATE TABLE IF NOT EXISTS `character_battleground_random` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_battleground_random: ~0 rows (approximately)
|
||||
DELETE FROM `character_battleground_random`;
|
||||
|
||||
@@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `character_brew_of_the_month` (
|
||||
`guid` int unsigned NOT NULL,
|
||||
`lastEventId` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_brew_of_the_month: ~0 rows (approximately)
|
||||
DELETE FROM `character_brew_of_the_month`;
|
||||
|
||||
@@ -18,13 +18,13 @@
|
||||
DROP TABLE IF EXISTS `character_declinedname`;
|
||||
CREATE TABLE IF NOT EXISTS `character_declinedname` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`genitive` varchar(15) NOT NULL DEFAULT '',
|
||||
`dative` varchar(15) NOT NULL DEFAULT '',
|
||||
`accusative` varchar(15) NOT NULL DEFAULT '',
|
||||
`instrumental` varchar(15) NOT NULL DEFAULT '',
|
||||
`prepositional` varchar(15) NOT NULL DEFAULT '',
|
||||
`genitive` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`dative` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`accusative` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`instrumental` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`prepositional` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_declinedname: ~0 rows (approximately)
|
||||
DELETE FROM `character_declinedname`;
|
||||
|
||||
@@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `character_entry_point` (
|
||||
`taxiPath1` int unsigned NOT NULL DEFAULT '0',
|
||||
`mountSpell` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_entry_point: ~0 rows (approximately)
|
||||
DELETE FROM `character_entry_point`;
|
||||
|
||||
@@ -20,8 +20,8 @@ CREATE TABLE IF NOT EXISTS `character_equipmentsets` (
|
||||
`guid` int NOT NULL DEFAULT '0',
|
||||
`setguid` bigint NOT NULL AUTO_INCREMENT,
|
||||
`setindex` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`name` varchar(31) NOT NULL,
|
||||
`iconname` varchar(100) NOT NULL,
|
||||
`name` varchar(31) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`iconname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`ignore_mask` int unsigned NOT NULL DEFAULT '0',
|
||||
`item0` int unsigned NOT NULL DEFAULT '0',
|
||||
`item1` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -45,7 +45,7 @@ CREATE TABLE IF NOT EXISTS `character_equipmentsets` (
|
||||
PRIMARY KEY (`setguid`),
|
||||
UNIQUE KEY `idx_set` (`guid`,`setguid`,`setindex`),
|
||||
KEY `Idx_setindex` (`setindex`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_equipmentsets: ~0 rows (approximately)
|
||||
DELETE FROM `character_equipmentsets`;
|
||||
|
||||
@@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `character_gifts` (
|
||||
`flags` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`item_guid`),
|
||||
KEY `idx_guid` (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_gifts: ~0 rows (approximately)
|
||||
DELETE FROM `character_gifts`;
|
||||
|
||||
@@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `character_glyphs` (
|
||||
`glyph5` smallint unsigned DEFAULT '0',
|
||||
`glyph6` smallint unsigned DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`talentGroup`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_glyphs: ~0 rows (approximately)
|
||||
DELETE FROM `character_glyphs`;
|
||||
|
||||
@@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `character_homebind` (
|
||||
`posZ` float NOT NULL DEFAULT '0',
|
||||
`posO` float NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_homebind: ~0 rows (approximately)
|
||||
DELETE FROM `character_homebind`;
|
||||
|
||||
@@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `character_instance` (
|
||||
`extended` tinyint unsigned NOT NULL,
|
||||
PRIMARY KEY (`guid`,`instance`),
|
||||
KEY `instance` (`instance`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_instance: ~0 rows (approximately)
|
||||
DELETE FROM `character_instance`;
|
||||
|
||||
@@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `character_inventory` (
|
||||
PRIMARY KEY (`item`),
|
||||
UNIQUE KEY `guid` (`guid`,`bag`,`slot`),
|
||||
KEY `idx_guid` (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_inventory: ~0 rows (approximately)
|
||||
DELETE FROM `character_inventory`;
|
||||
|
||||
@@ -21,23 +21,23 @@ CREATE TABLE IF NOT EXISTS `character_pet` (
|
||||
`entry` int unsigned NOT NULL DEFAULT '0',
|
||||
`owner` int unsigned NOT NULL DEFAULT '0',
|
||||
`modelid` int unsigned DEFAULT '0',
|
||||
`CreatedBySpell` mediumint unsigned NOT NULL DEFAULT '0',
|
||||
`CreatedBySpell` int unsigned DEFAULT '0',
|
||||
`PetType` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`level` smallint unsigned NOT NULL DEFAULT '1',
|
||||
`exp` int unsigned NOT NULL DEFAULT '0',
|
||||
`Reactstate` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`name` varchar(21) NOT NULL DEFAULT 'Pet',
|
||||
`name` varchar(21) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Pet',
|
||||
`renamed` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`slot` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`curhealth` int unsigned NOT NULL DEFAULT '1',
|
||||
`curmana` int unsigned NOT NULL DEFAULT '0',
|
||||
`curhappiness` int unsigned NOT NULL DEFAULT '0',
|
||||
`savetime` int unsigned NOT NULL DEFAULT '0',
|
||||
`abdata` text,
|
||||
`abdata` text COLLATE utf8mb4_unicode_ci,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `owner` (`owner`),
|
||||
KEY `idx_slot` (`slot`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Pet System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Pet System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_pet: ~0 rows (approximately)
|
||||
DELETE FROM `character_pet`;
|
||||
|
||||
@@ -19,14 +19,14 @@ DROP TABLE IF EXISTS `character_pet_declinedname`;
|
||||
CREATE TABLE IF NOT EXISTS `character_pet_declinedname` (
|
||||
`id` int unsigned NOT NULL DEFAULT '0',
|
||||
`owner` int unsigned NOT NULL DEFAULT '0',
|
||||
`genitive` varchar(12) NOT NULL DEFAULT '',
|
||||
`dative` varchar(12) NOT NULL DEFAULT '',
|
||||
`accusative` varchar(12) NOT NULL DEFAULT '',
|
||||
`instrumental` varchar(12) NOT NULL DEFAULT '',
|
||||
`prepositional` varchar(12) NOT NULL DEFAULT '',
|
||||
`genitive` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`dative` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`accusative` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`instrumental` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`prepositional` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `owner_key` (`owner`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_pet_declinedname: ~0 rows (approximately)
|
||||
DELETE FROM `character_pet_declinedname`;
|
||||
|
||||
@@ -34,7 +34,7 @@ CREATE TABLE IF NOT EXISTS `character_queststatus` (
|
||||
`itemcount6` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`playercount` smallint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`quest`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_queststatus: ~0 rows (approximately)
|
||||
DELETE FROM `character_queststatus`;
|
||||
|
||||
@@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_queststatus_daily` (
|
||||
`time` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`quest`),
|
||||
KEY `idx_guid` (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_queststatus_daily: ~0 rows (approximately)
|
||||
DELETE FROM `character_queststatus_daily`;
|
||||
|
||||
@@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `character_queststatus_monthly` (
|
||||
`quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
||||
PRIMARY KEY (`guid`,`quest`),
|
||||
KEY `idx_guid` (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_queststatus_monthly: ~0 rows (approximately)
|
||||
DELETE FROM `character_queststatus_monthly`;
|
||||
|
||||
@@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `character_queststatus_rewarded` (
|
||||
`quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
||||
`active` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`guid`,`quest`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_queststatus_rewarded: ~0 rows (approximately)
|
||||
DELETE FROM `character_queststatus_rewarded`;
|
||||
|
||||
@@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_queststatus_seasonal` (
|
||||
`event` int unsigned NOT NULL DEFAULT '0' COMMENT 'Event Identifier',
|
||||
PRIMARY KEY (`guid`,`quest`),
|
||||
KEY `idx_guid` (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_queststatus_seasonal: ~0 rows (approximately)
|
||||
DELETE FROM `character_queststatus_seasonal`;
|
||||
|
||||
@@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `character_queststatus_weekly` (
|
||||
`quest` int unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
||||
PRIMARY KEY (`guid`,`quest`),
|
||||
KEY `idx_guid` (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_queststatus_weekly: ~0 rows (approximately)
|
||||
DELETE FROM `character_queststatus_weekly`;
|
||||
|
||||
@@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_reputation` (
|
||||
`standing` int NOT NULL DEFAULT '0',
|
||||
`flags` smallint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`faction`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_reputation: ~0 rows (approximately)
|
||||
DELETE FROM `character_reputation`;
|
||||
|
||||
@@ -18,15 +18,13 @@
|
||||
DROP TABLE IF EXISTS `character_settings`;
|
||||
CREATE TABLE IF NOT EXISTS `character_settings` (
|
||||
`guid` int unsigned NOT NULL,
|
||||
`source` varchar(40) NOT NULL,
|
||||
`data` text,
|
||||
`source` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`data` text COLLATE utf8mb4_unicode_ci,
|
||||
PRIMARY KEY (`guid`,`source`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Player Settings';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player Settings';
|
||||
|
||||
-- Dumping data for table acore_characters.character_settings: 0 rows
|
||||
-- Dumping data for table acore_characters.character_settings: ~0 rows (approximately)
|
||||
DELETE FROM `character_settings`;
|
||||
/*!40000 ALTER TABLE `character_settings` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_settings` ENABLE KEYS */;
|
||||
|
||||
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
||||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
||||
|
||||
@@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `character_skills` (
|
||||
`value` smallint unsigned NOT NULL,
|
||||
`max` smallint unsigned NOT NULL,
|
||||
PRIMARY KEY (`guid`,`skill`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_skills: ~0 rows (approximately)
|
||||
DELETE FROM `character_skills`;
|
||||
|
||||
@@ -20,10 +20,10 @@ CREATE TABLE IF NOT EXISTS `character_social` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
|
||||
`friend` int unsigned NOT NULL DEFAULT '0' COMMENT 'Friend Global Unique Identifier',
|
||||
`flags` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Friend Flags',
|
||||
`note` varchar(48) NOT NULL DEFAULT '' COMMENT 'Friend Note',
|
||||
`note` varchar(48) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Friend Note',
|
||||
PRIMARY KEY (`guid`,`friend`,`flags`),
|
||||
KEY `friend` (`friend`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_social: ~0 rows (approximately)
|
||||
DELETE FROM `character_social`;
|
||||
|
||||
@@ -18,10 +18,10 @@
|
||||
DROP TABLE IF EXISTS `character_spell`;
|
||||
CREATE TABLE IF NOT EXISTS `character_spell` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`spell` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
|
||||
`spell` int unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
|
||||
`specMask` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`guid`,`spell`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.character_spell: ~0 rows (approximately)
|
||||
DELETE FROM `character_spell`;
|
||||
|
||||
@@ -18,13 +18,13 @@
|
||||
DROP TABLE IF EXISTS `character_spell_cooldown`;
|
||||
CREATE TABLE IF NOT EXISTS `character_spell_cooldown` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
|
||||
`spell` mediumint unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
|
||||
`category` mediumint unsigned NOT NULL DEFAULT '0',
|
||||
`spell` int unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
|
||||
`category` int unsigned DEFAULT '0',
|
||||
`item` int unsigned NOT NULL DEFAULT '0' COMMENT 'Item Identifier',
|
||||
`time` int unsigned NOT NULL DEFAULT '0',
|
||||
`needSend` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`guid`,`spell`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_spell_cooldown: ~0 rows (approximately)
|
||||
DELETE FROM `character_spell_cooldown`;
|
||||
|
||||
@@ -50,7 +50,7 @@ CREATE TABLE IF NOT EXISTS `character_stats` (
|
||||
`resilience` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`),
|
||||
CONSTRAINT `character_stats_chk_1` CHECK (((`blockPct` >= 0) and (`dodgePct` >= 0) and (`parryPct` >= 0) and (`critPct` >= 0) and (`rangedCritPct` >= 0) and (`spellCritPct` >= 0)))
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_stats: ~0 rows (approximately)
|
||||
DELETE FROM `character_stats`;
|
||||
|
||||
@@ -18,10 +18,10 @@
|
||||
DROP TABLE IF EXISTS `character_talent`;
|
||||
CREATE TABLE IF NOT EXISTS `character_talent` (
|
||||
`guid` int unsigned NOT NULL,
|
||||
`spell` mediumint unsigned NOT NULL,
|
||||
`spell` int unsigned NOT NULL,
|
||||
`specMask` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`spell`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.character_talent: ~0 rows (approximately)
|
||||
DELETE FROM `character_talent`;
|
||||
|
||||
@@ -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) NOT NULL,
|
||||
`name` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`race` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`class` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`gender` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
@@ -41,7 +41,7 @@ CREATE TABLE IF NOT EXISTS `characters` (
|
||||
`instance_id` int unsigned NOT NULL DEFAULT '0',
|
||||
`instance_mode_mask` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`orientation` float NOT NULL DEFAULT '0',
|
||||
`taximask` text NOT NULL,
|
||||
`taximask` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`online` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`cinematic` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`totaltime` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -55,13 +55,13 @@ CREATE TABLE IF NOT EXISTS `characters` (
|
||||
`trans_y` float NOT NULL DEFAULT '0',
|
||||
`trans_z` float NOT NULL DEFAULT '0',
|
||||
`trans_o` float NOT NULL DEFAULT '0',
|
||||
`transguid` mediumint NOT NULL DEFAULT '0',
|
||||
`transguid` int DEFAULT '0',
|
||||
`extra_flags` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`stable_slots` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`at_login` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`zone` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`death_expire_time` int unsigned NOT NULL DEFAULT '0',
|
||||
`taxi_path` text,
|
||||
`taxi_path` text COLLATE utf8mb4_unicode_ci,
|
||||
`arenaPoints` int unsigned NOT NULL DEFAULT '0',
|
||||
`totalHonorPoints` int unsigned NOT NULL DEFAULT '0',
|
||||
`todayHonorPoints` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -81,26 +81,27 @@ CREATE TABLE IF NOT EXISTS `characters` (
|
||||
`power5` int unsigned NOT NULL DEFAULT '0',
|
||||
`power6` int unsigned NOT NULL DEFAULT '0',
|
||||
`power7` int unsigned NOT NULL DEFAULT '0',
|
||||
`latency` mediumint unsigned NOT NULL DEFAULT '0',
|
||||
`latency` int unsigned DEFAULT '0',
|
||||
`talentGroupsCount` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
`activeTalentGroup` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`exploredZones` longtext,
|
||||
`equipmentCache` longtext,
|
||||
`exploredZones` longtext COLLATE utf8mb4_unicode_ci,
|
||||
`equipmentCache` longtext COLLATE utf8mb4_unicode_ci,
|
||||
`ammoId` int unsigned NOT NULL DEFAULT '0',
|
||||
`knownTitles` longtext,
|
||||
`knownTitles` longtext COLLATE utf8mb4_unicode_ci,
|
||||
`actionBars` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`grantableLevels` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`order` tinyint DEFAULT NULL,
|
||||
`creation_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`deleteInfos_Account` int unsigned DEFAULT NULL,
|
||||
`deleteInfos_Name` varchar(12) DEFAULT NULL,
|
||||
`deleteInfos_Name` varchar(12) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`deleteDate` int unsigned DEFAULT NULL,
|
||||
`innTriggerId` int unsigned NOT NULL,
|
||||
`extraBonusTalentCount` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`),
|
||||
KEY `idx_account` (`account`),
|
||||
KEY `idx_online` (`online`),
|
||||
KEY `idx_name` (`name`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.characters: ~0 rows (approximately)
|
||||
DELETE FROM `characters`;
|
||||
|
||||
@@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `corpse` (
|
||||
`mapId` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
|
||||
`phaseMask` int unsigned NOT NULL DEFAULT '1',
|
||||
`displayId` int unsigned NOT NULL DEFAULT '0',
|
||||
`itemCache` text NOT NULL,
|
||||
`itemCache` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`bytes1` int unsigned NOT NULL DEFAULT '0',
|
||||
`bytes2` int unsigned NOT NULL DEFAULT '0',
|
||||
`guildId` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -38,7 +38,7 @@ CREATE TABLE IF NOT EXISTS `corpse` (
|
||||
KEY `idx_type` (`corpseType`),
|
||||
KEY `idx_instance` (`instanceId`),
|
||||
KEY `idx_time` (`time`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Death System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Death System';
|
||||
|
||||
-- Dumping data for table acore_characters.corpse: ~0 rows (approximately)
|
||||
DELETE FROM `corpse`;
|
||||
|
||||
@@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `creature_respawn` (
|
||||
`instanceId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier',
|
||||
PRIMARY KEY (`guid`,`instanceId`),
|
||||
KEY `idx_instance` (`instanceId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Grid Loading System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Grid Loading System';
|
||||
|
||||
-- Dumping data for table acore_characters.creature_respawn: ~0 rows (approximately)
|
||||
DELETE FROM `creature_respawn`;
|
||||
|
||||
@@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `game_event_condition_save` (
|
||||
`condition_id` int unsigned NOT NULL DEFAULT '0',
|
||||
`done` float DEFAULT '0',
|
||||
PRIMARY KEY (`eventEntry`,`condition_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.game_event_condition_save: ~0 rows (approximately)
|
||||
DELETE FROM `game_event_condition_save`;
|
||||
|
||||
@@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `game_event_save` (
|
||||
`state` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
`next_start` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`eventEntry`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.game_event_save: ~0 rows (approximately)
|
||||
DELETE FROM `game_event_save`;
|
||||
|
||||
@@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `gameobject_respawn` (
|
||||
`instanceId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier',
|
||||
PRIMARY KEY (`guid`,`instanceId`),
|
||||
KEY `idx_instance` (`instanceId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Grid Loading System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Grid Loading System';
|
||||
|
||||
-- Dumping data for table acore_characters.gameobject_respawn: ~0 rows (approximately)
|
||||
DELETE FROM `gameobject_respawn`;
|
||||
|
||||
@@ -20,9 +20,9 @@ CREATE TABLE IF NOT EXISTS `gm_subsurvey` (
|
||||
`surveyId` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
`questionId` int unsigned NOT NULL DEFAULT '0',
|
||||
`answer` int unsigned NOT NULL DEFAULT '0',
|
||||
`answerComment` text NOT NULL,
|
||||
`answerComment` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`surveyId`,`questionId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.gm_subsurvey: ~0 rows (approximately)
|
||||
DELETE FROM `gm_subsurvey`;
|
||||
|
||||
@@ -20,11 +20,11 @@ CREATE TABLE IF NOT EXISTS `gm_survey` (
|
||||
`surveyId` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
`guid` int unsigned NOT NULL DEFAULT '0',
|
||||
`mainSurvey` int unsigned NOT NULL DEFAULT '0',
|
||||
`comment` longtext NOT NULL,
|
||||
`comment` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`createTime` int unsigned NOT NULL DEFAULT '0',
|
||||
`maxMMR` smallint NOT NULL,
|
||||
PRIMARY KEY (`surveyId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.gm_survey: ~0 rows (approximately)
|
||||
DELETE FROM `gm_survey`;
|
||||
|
||||
@@ -20,8 +20,8 @@ CREATE TABLE IF NOT EXISTS `gm_ticket` (
|
||||
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
`type` tinyint unsigned NOT NULL DEFAULT '0' COMMENT '0 open, 1 closed, 2 character deleted',
|
||||
`playerGuid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier of ticket creator',
|
||||
`name` varchar(12) NOT NULL COMMENT 'Name of ticket creator',
|
||||
`description` text NOT NULL,
|
||||
`name` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of ticket creator',
|
||||
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`createTime` int unsigned NOT NULL DEFAULT '0',
|
||||
`mapId` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`posX` float NOT NULL DEFAULT '0',
|
||||
@@ -30,15 +30,15 @@ CREATE TABLE IF NOT EXISTS `gm_ticket` (
|
||||
`lastModifiedTime` int unsigned NOT NULL DEFAULT '0',
|
||||
`closedBy` int NOT NULL DEFAULT '0' COMMENT '-1 Closed by Console, >0 GUID of GM',
|
||||
`assignedTo` int unsigned NOT NULL DEFAULT '0' COMMENT 'GUID of admin to whom ticket is assigned',
|
||||
`comment` text NOT NULL,
|
||||
`response` text NOT NULL,
|
||||
`comment` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`response` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`completed` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`escalated` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`viewed` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`needMoreHelp` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`resolvedBy` int NOT NULL DEFAULT '0' COMMENT '-1 Resolved by Console, >0 GUID of GM',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.gm_ticket: ~0 rows (approximately)
|
||||
DELETE FROM `gm_ticket`;
|
||||
|
||||
@@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `group_member` (
|
||||
`subgroup` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`roles` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`memberGuid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Groups';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Groups';
|
||||
|
||||
-- Dumping data for table acore_characters.group_member: ~0 rows (approximately)
|
||||
DELETE FROM `group_member`;
|
||||
|
||||
@@ -36,7 +36,7 @@ CREATE TABLE IF NOT EXISTS `groups` (
|
||||
`masterLooterGuid` int unsigned NOT NULL,
|
||||
PRIMARY KEY (`guid`),
|
||||
KEY `leaderGuid` (`leaderGuid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Groups';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Groups';
|
||||
|
||||
-- Dumping data for table acore_characters.groups: ~0 rows (approximately)
|
||||
DELETE FROM `groups`;
|
||||
|
||||
@@ -18,19 +18,19 @@
|
||||
DROP TABLE IF EXISTS `guild`;
|
||||
CREATE TABLE IF NOT EXISTS `guild` (
|
||||
`guildid` int unsigned NOT NULL DEFAULT '0',
|
||||
`name` varchar(24) NOT NULL DEFAULT '',
|
||||
`name` varchar(24) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`leaderguid` int unsigned NOT NULL DEFAULT '0',
|
||||
`EmblemStyle` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`EmblemColor` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`BorderStyle` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`BorderColor` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`BackgroundColor` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`info` varchar(500) NOT NULL DEFAULT '',
|
||||
`motd` varchar(128) NOT NULL DEFAULT '',
|
||||
`info` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`motd` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`createdate` int unsigned NOT NULL DEFAULT '0',
|
||||
`BankMoney` bigint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guildid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Guild System';
|
||||
|
||||
-- Dumping data for table acore_characters.guild: ~0 rows (approximately)
|
||||
DELETE FROM `guild`;
|
||||
|
||||
@@ -30,7 +30,7 @@ CREATE TABLE IF NOT EXISTS `guild_bank_eventlog` (
|
||||
KEY `guildid_key` (`guildid`),
|
||||
KEY `Idx_PlayerGuid` (`PlayerGuid`),
|
||||
KEY `Idx_LogGuid` (`LogGuid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.guild_bank_eventlog: ~0 rows (approximately)
|
||||
DELETE FROM `guild_bank_eventlog`;
|
||||
|
||||
@@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `guild_bank_item` (
|
||||
PRIMARY KEY (`guildid`,`TabId`,`SlotId`),
|
||||
KEY `guildid_key` (`guildid`),
|
||||
KEY `Idx_item_guid` (`item_guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.guild_bank_item: ~0 rows (approximately)
|
||||
DELETE FROM `guild_bank_item`;
|
||||
|
||||
@@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS `guild_bank_right` (
|
||||
`SlotPerDay` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guildid`,`TabId`,`rid`),
|
||||
KEY `guildid_key` (`guildid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.guild_bank_right: ~0 rows (approximately)
|
||||
DELETE FROM `guild_bank_right`;
|
||||
|
||||
@@ -19,12 +19,12 @@ DROP TABLE IF EXISTS `guild_bank_tab`;
|
||||
CREATE TABLE IF NOT EXISTS `guild_bank_tab` (
|
||||
`guildid` int unsigned NOT NULL DEFAULT '0',
|
||||
`TabId` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`TabName` varchar(16) NOT NULL DEFAULT '',
|
||||
`TabIcon` varchar(100) NOT NULL DEFAULT '',
|
||||
`TabText` varchar(500) DEFAULT NULL,
|
||||
`TabName` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`TabIcon` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`TabText` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
PRIMARY KEY (`guildid`,`TabId`),
|
||||
KEY `guildid_key` (`guildid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.guild_bank_tab: ~0 rows (approximately)
|
||||
DELETE FROM `guild_bank_tab`;
|
||||
|
||||
@@ -28,7 +28,7 @@ CREATE TABLE IF NOT EXISTS `guild_eventlog` (
|
||||
KEY `Idx_PlayerGuid1` (`PlayerGuid1`),
|
||||
KEY `Idx_PlayerGuid2` (`PlayerGuid2`),
|
||||
KEY `Idx_LogGuid` (`LogGuid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild Eventlog';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Guild Eventlog';
|
||||
|
||||
-- Dumping data for table acore_characters.guild_eventlog: ~0 rows (approximately)
|
||||
DELETE FROM `guild_eventlog`;
|
||||
|
||||
@@ -20,12 +20,12 @@ CREATE TABLE IF NOT EXISTS `guild_member` (
|
||||
`guildid` int unsigned NOT NULL COMMENT 'Guild Identificator',
|
||||
`guid` int unsigned NOT NULL,
|
||||
`rank` tinyint unsigned NOT NULL,
|
||||
`pnote` varchar(31) NOT NULL DEFAULT '',
|
||||
`offnote` varchar(31) NOT NULL DEFAULT '',
|
||||
`pnote` varchar(31) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`offnote` varchar(31) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
UNIQUE KEY `guid_key` (`guid`),
|
||||
KEY `guildid_key` (`guildid`),
|
||||
KEY `guildid_rank_key` (`guildid`,`rank`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Guild System';
|
||||
|
||||
-- Dumping data for table acore_characters.guild_member: ~0 rows (approximately)
|
||||
DELETE FROM `guild_member`;
|
||||
|
||||
@@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `guild_member_withdraw` (
|
||||
`tab5` int unsigned NOT NULL DEFAULT '0',
|
||||
`money` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild Member Daily Withdraws';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Guild Member Daily Withdraws';
|
||||
|
||||
-- Dumping data for table acore_characters.guild_member_withdraw: ~0 rows (approximately)
|
||||
DELETE FROM `guild_member_withdraw`;
|
||||
|
||||
@@ -19,12 +19,12 @@ DROP TABLE IF EXISTS `guild_rank`;
|
||||
CREATE TABLE IF NOT EXISTS `guild_rank` (
|
||||
`guildid` int unsigned NOT NULL DEFAULT '0',
|
||||
`rid` tinyint unsigned NOT NULL,
|
||||
`rname` varchar(20) NOT NULL DEFAULT '',
|
||||
`rights` mediumint unsigned NOT NULL DEFAULT '0',
|
||||
`rname` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`rights` int unsigned DEFAULT '0',
|
||||
`BankMoneyPerDay` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guildid`,`rid`),
|
||||
KEY `Idx_rid` (`rid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Guild System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Guild System';
|
||||
|
||||
-- Dumping data for table acore_characters.guild_rank: ~0 rows (approximately)
|
||||
DELETE FROM `guild_rank`;
|
||||
|
||||
@@ -22,12 +22,12 @@ CREATE TABLE IF NOT EXISTS `instance` (
|
||||
`resettime` int unsigned NOT NULL DEFAULT '0',
|
||||
`difficulty` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`completedEncounters` int unsigned NOT NULL DEFAULT '0',
|
||||
`data` tinytext NOT NULL,
|
||||
`data` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `map` (`map`),
|
||||
KEY `resettime` (`resettime`),
|
||||
KEY `difficulty` (`difficulty`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.instance: ~0 rows (approximately)
|
||||
DELETE FROM `instance`;
|
||||
|
||||
@@ -22,82 +22,82 @@ CREATE TABLE IF NOT EXISTS `instance_reset` (
|
||||
`resettime` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`mapid`,`difficulty`),
|
||||
KEY `difficulty` (`difficulty`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.instance_reset: ~71 rows (approximately)
|
||||
DELETE FROM `instance_reset`;
|
||||
INSERT INTO `instance_reset` (`mapid`, `difficulty`, `resettime`) VALUES
|
||||
(249, 0, 1675368000),
|
||||
(249, 1, 1675368000),
|
||||
(269, 1, 1675166400),
|
||||
(309, 0, 1675166400),
|
||||
(409, 0, 1675368000),
|
||||
(469, 0, 1675368000),
|
||||
(509, 0, 1675166400),
|
||||
(531, 0, 1675368000),
|
||||
(532, 0, 1675368000),
|
||||
(533, 0, 1675368000),
|
||||
(533, 1, 1675368000),
|
||||
(534, 0, 1675368000),
|
||||
(540, 1, 1675166400),
|
||||
(542, 1, 1675166400),
|
||||
(543, 1, 1675166400),
|
||||
(544, 0, 1675368000),
|
||||
(545, 1, 1675166400),
|
||||
(546, 1, 1675166400),
|
||||
(547, 1, 1675166400),
|
||||
(548, 0, 1675368000),
|
||||
(550, 0, 1675368000),
|
||||
(552, 1, 1675166400),
|
||||
(553, 1, 1675166400),
|
||||
(554, 1, 1675166400),
|
||||
(555, 1, 1675166400),
|
||||
(556, 1, 1675166400),
|
||||
(557, 1, 1675166400),
|
||||
(558, 1, 1675166400),
|
||||
(560, 1, 1675166400),
|
||||
(564, 0, 1675368000),
|
||||
(565, 0, 1675368000),
|
||||
(568, 0, 1675166400),
|
||||
(574, 1, 1675166400),
|
||||
(575, 1, 1675166400),
|
||||
(576, 1, 1675166400),
|
||||
(578, 1, 1675195200),
|
||||
(580, 0, 1675368000),
|
||||
(585, 1, 1675195200),
|
||||
(595, 1, 1675195200),
|
||||
(598, 1, 1675195200),
|
||||
(599, 1, 1675195200),
|
||||
(600, 1, 1675195200),
|
||||
(601, 1, 1675195200),
|
||||
(602, 1, 1675195200),
|
||||
(603, 0, 1675368000),
|
||||
(603, 1, 1675368000),
|
||||
(604, 1, 1675195200),
|
||||
(608, 1, 1675195200),
|
||||
(615, 0, 1675368000),
|
||||
(615, 1, 1675368000),
|
||||
(616, 0, 1675368000),
|
||||
(616, 1, 1675368000),
|
||||
(619, 1, 1675195200),
|
||||
(624, 0, 1675368000),
|
||||
(624, 1, 1675368000),
|
||||
(631, 0, 1675368000),
|
||||
(631, 1, 1675368000),
|
||||
(631, 2, 1675368000),
|
||||
(631, 3, 1675368000),
|
||||
(632, 1, 1675195200),
|
||||
(649, 0, 1675368000),
|
||||
(649, 1, 1675368000),
|
||||
(649, 2, 1675368000),
|
||||
(649, 3, 1675368000),
|
||||
(650, 1, 1675195200),
|
||||
(658, 1, 1675195200),
|
||||
(668, 1, 1675195200),
|
||||
(724, 0, 1675368000),
|
||||
(724, 1, 1675368000),
|
||||
(724, 2, 1675368000),
|
||||
(724, 3, 1675368000);
|
||||
(249, 0, 1682640000),
|
||||
(249, 1, 1682640000),
|
||||
(269, 1, 1682265600),
|
||||
(309, 0, 1682438400),
|
||||
(409, 0, 1682640000),
|
||||
(469, 0, 1682640000),
|
||||
(509, 0, 1682438400),
|
||||
(531, 0, 1682640000),
|
||||
(532, 0, 1682640000),
|
||||
(533, 0, 1682640000),
|
||||
(533, 1, 1682640000),
|
||||
(534, 0, 1682640000),
|
||||
(540, 1, 1682265600),
|
||||
(542, 1, 1682265600),
|
||||
(543, 1, 1682265600),
|
||||
(544, 0, 1682640000),
|
||||
(545, 1, 1682265600),
|
||||
(546, 1, 1682265600),
|
||||
(547, 1, 1682265600),
|
||||
(548, 0, 1682640000),
|
||||
(550, 0, 1682640000),
|
||||
(552, 1, 1682265600),
|
||||
(553, 1, 1682265600),
|
||||
(554, 1, 1682265600),
|
||||
(555, 1, 1682265600),
|
||||
(556, 1, 1682265600),
|
||||
(557, 1, 1682265600),
|
||||
(558, 1, 1682265600),
|
||||
(560, 1, 1682265600),
|
||||
(564, 0, 1682640000),
|
||||
(565, 0, 1682640000),
|
||||
(568, 0, 1682438400),
|
||||
(574, 1, 1682265600),
|
||||
(575, 1, 1682265600),
|
||||
(576, 1, 1682265600),
|
||||
(578, 1, 1682294400),
|
||||
(580, 0, 1682640000),
|
||||
(585, 1, 1682294400),
|
||||
(595, 1, 1682294400),
|
||||
(598, 1, 1682294400),
|
||||
(599, 1, 1682294400),
|
||||
(600, 1, 1682294400),
|
||||
(601, 1, 1682294400),
|
||||
(602, 1, 1682294400),
|
||||
(603, 0, 1682640000),
|
||||
(603, 1, 1682640000),
|
||||
(604, 1, 1682294400),
|
||||
(608, 1, 1682294400),
|
||||
(615, 0, 1682640000),
|
||||
(615, 1, 1682640000),
|
||||
(616, 0, 1682640000),
|
||||
(616, 1, 1682640000),
|
||||
(619, 1, 1682294400),
|
||||
(624, 0, 1682640000),
|
||||
(624, 1, 1682640000),
|
||||
(631, 0, 1682640000),
|
||||
(631, 1, 1682640000),
|
||||
(631, 2, 1682640000),
|
||||
(631, 3, 1682640000),
|
||||
(632, 1, 1682294400),
|
||||
(649, 0, 1682640000),
|
||||
(649, 1, 1682640000),
|
||||
(649, 2, 1682640000),
|
||||
(649, 3, 1682640000),
|
||||
(650, 1, 1682294400),
|
||||
(658, 1, 1682294400),
|
||||
(668, 1, 1682294400),
|
||||
(724, 0, 1682640000),
|
||||
(724, 1, 1682640000),
|
||||
(724, 2, 1682640000),
|
||||
(724, 3, 1682640000);
|
||||
|
||||
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
||||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
||||
|
||||
@@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `instance_saved_go_state_data` (
|
||||
`guid` int unsigned NOT NULL COMMENT 'gameobject.guid',
|
||||
`state` tinyint unsigned DEFAULT '0' COMMENT 'gameobject.state',
|
||||
PRIMARY KEY (`id`,`guid`) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.instance_saved_go_state_data: ~0 rows (approximately)
|
||||
DELETE FROM `instance_saved_go_state_data`;
|
||||
|
||||
@@ -18,22 +18,22 @@
|
||||
DROP TABLE IF EXISTS `item_instance`;
|
||||
CREATE TABLE IF NOT EXISTS `item_instance` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0',
|
||||
`itemEntry` mediumint unsigned NOT NULL DEFAULT '0',
|
||||
`itemEntry` int unsigned DEFAULT '0',
|
||||
`owner_guid` int unsigned NOT NULL DEFAULT '0',
|
||||
`creatorGuid` int unsigned NOT NULL DEFAULT '0',
|
||||
`giftCreatorGuid` int unsigned NOT NULL DEFAULT '0',
|
||||
`count` int unsigned NOT NULL DEFAULT '1',
|
||||
`duration` int NOT NULL DEFAULT '0',
|
||||
`charges` tinytext,
|
||||
`flags` mediumint unsigned NOT NULL DEFAULT '0',
|
||||
`enchantments` text NOT NULL,
|
||||
`charges` tinytext COLLATE utf8mb4_unicode_ci,
|
||||
`flags` int unsigned DEFAULT '0',
|
||||
`enchantments` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`randomPropertyId` smallint NOT NULL DEFAULT '0',
|
||||
`durability` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`playedTime` int unsigned NOT NULL DEFAULT '0',
|
||||
`text` text,
|
||||
`text` text COLLATE utf8mb4_unicode_ci,
|
||||
PRIMARY KEY (`guid`),
|
||||
KEY `idx_owner_guid` (`owner_guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Item System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Item System';
|
||||
|
||||
-- Dumping data for table acore_characters.item_instance: ~0 rows (approximately)
|
||||
DELETE FROM `item_instance`;
|
||||
|
||||
@@ -30,7 +30,7 @@ CREATE TABLE IF NOT EXISTS `item_loot_storage` (
|
||||
`is_underthreshold` tinyint unsigned NOT NULL,
|
||||
`needs_quest` tinyint unsigned NOT NULL,
|
||||
`conditionLootId` int NOT NULL DEFAULT '0'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.item_loot_storage: ~0 rows (approximately)
|
||||
DELETE FROM `item_loot_storage`;
|
||||
|
||||
@@ -22,7 +22,7 @@ CREATE TABLE IF NOT EXISTS `item_refund_instance` (
|
||||
`paidMoney` int unsigned NOT NULL DEFAULT '0',
|
||||
`paidExtendedCost` smallint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`item_guid`,`player_guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Item Refund System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Item Refund System';
|
||||
|
||||
-- Dumping data for table acore_characters.item_refund_instance: ~0 rows (approximately)
|
||||
DELETE FROM `item_refund_instance`;
|
||||
|
||||
@@ -18,9 +18,9 @@
|
||||
DROP TABLE IF EXISTS `item_soulbound_trade_data`;
|
||||
CREATE TABLE IF NOT EXISTS `item_soulbound_trade_data` (
|
||||
`itemGuid` int unsigned NOT NULL COMMENT 'Item GUID',
|
||||
`allowedPlayers` text NOT NULL COMMENT 'Space separated GUID list of players who can receive this item in trade',
|
||||
`allowedPlayers` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Space separated GUID list of players who can receive this item in trade',
|
||||
PRIMARY KEY (`itemGuid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Item Refund System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Item Refund System';
|
||||
|
||||
-- Dumping data for table acore_characters.item_soulbound_trade_data: ~0 rows (approximately)
|
||||
DELETE FROM `item_soulbound_trade_data`;
|
||||
|
||||
@@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `lag_reports` (
|
||||
`latency` int unsigned NOT NULL DEFAULT '0',
|
||||
`createTime` int unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`reportId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
|
||||
-- Dumping data for table acore_characters.lag_reports: ~0 rows (approximately)
|
||||
DELETE FROM `lag_reports`;
|
||||
|
||||
@@ -21,7 +21,7 @@ CREATE TABLE IF NOT EXISTS `lfg_data` (
|
||||
`dungeon` int unsigned NOT NULL DEFAULT '0',
|
||||
`state` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='LFG Data';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='LFG Data';
|
||||
|
||||
-- Dumping data for table acore_characters.lfg_data: ~0 rows (approximately)
|
||||
DELETE FROM `lfg_data`;
|
||||
|
||||
@@ -31,12 +31,10 @@ CREATE TABLE IF NOT EXISTS `log_arena_fights` (
|
||||
`loser_tr_change` smallint NOT NULL,
|
||||
`currOnline` int unsigned NOT NULL,
|
||||
PRIMARY KEY (`fight_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.log_arena_fights: 0 rows
|
||||
-- Dumping data for table acore_characters.log_arena_fights: ~0 rows (approximately)
|
||||
DELETE FROM `log_arena_fights`;
|
||||
/*!40000 ALTER TABLE `log_arena_fights` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `log_arena_fights` ENABLE KEYS */;
|
||||
|
||||
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
||||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
||||
|
||||
@@ -19,21 +19,19 @@ DROP TABLE IF EXISTS `log_arena_memberstats`;
|
||||
CREATE TABLE IF NOT EXISTS `log_arena_memberstats` (
|
||||
`fight_id` int unsigned NOT NULL,
|
||||
`member_id` tinyint unsigned NOT NULL,
|
||||
`name` char(20) NOT NULL,
|
||||
`name` char(20) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`guid` int unsigned NOT NULL,
|
||||
`team` int unsigned NOT NULL,
|
||||
`account` int unsigned NOT NULL,
|
||||
`ip` char(15) NOT NULL,
|
||||
`ip` char(15) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`damage` int unsigned NOT NULL,
|
||||
`heal` int unsigned NOT NULL,
|
||||
`kblows` int unsigned NOT NULL,
|
||||
PRIMARY KEY (`fight_id`,`member_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.log_arena_memberstats: 0 rows
|
||||
-- Dumping data for table acore_characters.log_arena_memberstats: ~0 rows (approximately)
|
||||
DELETE FROM `log_arena_memberstats`;
|
||||
/*!40000 ALTER TABLE `log_arena_memberstats` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `log_arena_memberstats` ENABLE KEYS */;
|
||||
|
||||
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
||||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
||||
|
||||
@@ -22,13 +22,11 @@ CREATE TABLE IF NOT EXISTS `log_encounter` (
|
||||
`difficulty` tinyint unsigned NOT NULL,
|
||||
`creditType` tinyint unsigned NOT NULL,
|
||||
`creditEntry` int unsigned NOT NULL,
|
||||
`playersInfo` text NOT NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
|
||||
`playersInfo` text COLLATE utf8mb4_unicode_ci NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.log_encounter: 0 rows
|
||||
-- Dumping data for table acore_characters.log_encounter: ~0 rows (approximately)
|
||||
DELETE FROM `log_encounter`;
|
||||
/*!40000 ALTER TABLE `log_encounter` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `log_encounter` ENABLE KEYS */;
|
||||
|
||||
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
||||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
||||
|
||||
@@ -19,20 +19,18 @@ DROP TABLE IF EXISTS `log_money`;
|
||||
CREATE TABLE IF NOT EXISTS `log_money` (
|
||||
`sender_acc` int unsigned NOT NULL,
|
||||
`sender_guid` int unsigned NOT NULL,
|
||||
`sender_name` text NOT NULL,
|
||||
`sender_ip` text NOT NULL,
|
||||
`sender_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`sender_ip` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`receiver_acc` int unsigned NOT NULL,
|
||||
`receiver_name` text NOT NULL,
|
||||
`receiver_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`money` bigint unsigned NOT NULL,
|
||||
`topic` text NOT NULL,
|
||||
`topic` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`date` datetime NOT NULL,
|
||||
`type` tinyint NOT NULL COMMENT '1=COD,2=AH,3=GB DEPOSIT,4=GB WITHDRAW,5=MAIL,6=TRADE'
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.log_money: 0 rows
|
||||
-- Dumping data for table acore_characters.log_money: ~0 rows (approximately)
|
||||
DELETE FROM `log_money`;
|
||||
/*!40000 ALTER TABLE `log_money` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `log_money` ENABLE KEYS */;
|
||||
|
||||
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
||||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
||||
|
||||
@@ -23,8 +23,8 @@ CREATE TABLE IF NOT EXISTS `mail` (
|
||||
`mailTemplateId` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`sender` int unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
|
||||
`receiver` int unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
|
||||
`subject` longtext,
|
||||
`body` longtext,
|
||||
`subject` longtext COLLATE utf8mb4_unicode_ci,
|
||||
`body` longtext COLLATE utf8mb4_unicode_ci,
|
||||
`has_items` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`expire_time` int unsigned NOT NULL DEFAULT '0',
|
||||
`deliver_time` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -33,7 +33,7 @@ CREATE TABLE IF NOT EXISTS `mail` (
|
||||
`checked` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `idx_receiver` (`receiver`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Mail System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Mail System';
|
||||
|
||||
-- Dumping data for table acore_characters.mail: ~0 rows (approximately)
|
||||
DELETE FROM `mail`;
|
||||
|
||||
@@ -23,7 +23,7 @@ CREATE TABLE IF NOT EXISTS `mail_items` (
|
||||
PRIMARY KEY (`item_guid`),
|
||||
KEY `idx_receiver` (`receiver`),
|
||||
KEY `idx_mail_id` (`mail_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.mail_items: ~0 rows (approximately)
|
||||
DELETE FROM `mail_items`;
|
||||
|
||||
@@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS `mail_server_character` (
|
||||
`guid` int unsigned NOT NULL,
|
||||
`mailId` int unsigned NOT NULL,
|
||||
PRIMARY KEY (`guid`,`mailId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
-- Dumping data for table acore_characters.mail_server_character: ~0 rows (approximately)
|
||||
DELETE FROM `mail_server_character`;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user