mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
feat(DB): release ACDB 8.0.0 (#14833)
This commit is contained in:
@@ -1,18 +1,21 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.account
|
||||
-- Dumping structure for table acore_auth.account
|
||||
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 '',
|
||||
@@ -40,13 +43,12 @@ CREATE TABLE IF NOT EXISTS `account` (
|
||||
`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_0900_ai_ci COMMENT='Account System';
|
||||
|
||||
-- Dumpar data för tabell acore_auth.account: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.account: ~0 rows (approximately)
|
||||
DELETE FROM `account`;
|
||||
/*!40000 ALTER TABLE `account` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `account` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,33 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.account_access
|
||||
-- Dumping structure for table acore_auth.account_access
|
||||
DROP TABLE IF EXISTS `account_access`;
|
||||
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 '',
|
||||
PRIMARY KEY (`id`,`RealmID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_auth.account_access: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.account_access: ~0 rows (approximately)
|
||||
DELETE FROM `account_access`;
|
||||
/*!40000 ALTER TABLE `account_access` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `account_access` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,21 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.account_banned
|
||||
-- Dumping structure for table acore_auth.account_banned
|
||||
DROP TABLE IF EXISTS `account_banned`;
|
||||
CREATE TABLE IF NOT EXISTS `account_banned` (
|
||||
`id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account id',
|
||||
`bandate` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -21,13 +24,12 @@ CREATE TABLE IF NOT EXISTS `account_banned` (
|
||||
`banreason` varchar(255) 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_0900_ai_ci COMMENT='Ban List';
|
||||
|
||||
-- Dumpar data för tabell acore_auth.account_banned: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.account_banned: ~0 rows (approximately)
|
||||
DELETE FROM `account_banned`;
|
||||
/*!40000 ALTER TABLE `account_banned` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `account_banned` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,21 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.account_muted
|
||||
-- Dumping structure for table acore_auth.account_muted
|
||||
DROP TABLE IF EXISTS `account_muted`;
|
||||
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',
|
||||
@@ -22,11 +25,10 @@ CREATE TABLE IF NOT EXISTS `account_muted` (
|
||||
PRIMARY KEY (`guid`,`mutedate`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='mute List';
|
||||
|
||||
-- Dumpar data för tabell acore_auth.account_muted: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.account_muted: ~0 rows (approximately)
|
||||
DELETE FROM `account_muted`;
|
||||
/*!40000 ALTER TABLE `account_muted` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `account_muted` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,33 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.autobroadcast
|
||||
-- Dumping structure for table acore_auth.autobroadcast
|
||||
DROP TABLE IF EXISTS `autobroadcast`;
|
||||
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,
|
||||
PRIMARY KEY (`id`,`realmid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_auth.autobroadcast: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.autobroadcast: ~0 rows (approximately)
|
||||
DELETE FROM `autobroadcast`;
|
||||
/*!40000 ALTER TABLE `autobroadcast` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `autobroadcast` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,21 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.build_info
|
||||
-- Dumping structure for table acore_auth.build_info
|
||||
DROP TABLE IF EXISTS `build_info`;
|
||||
CREATE TABLE IF NOT EXISTS `build_info` (
|
||||
`build` int NOT NULL,
|
||||
`majorVersion` int DEFAULT NULL,
|
||||
@@ -25,11 +28,10 @@ CREATE TABLE IF NOT EXISTS `build_info` (
|
||||
`winChecksumSeed` varchar(40) DEFAULT NULL,
|
||||
`macChecksumSeed` varchar(40) DEFAULT NULL,
|
||||
PRIMARY KEY (`build`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_auth.build_info: ~11 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.build_info: ~11 rows (approximately)
|
||||
DELETE FROM `build_info`;
|
||||
/*!40000 ALTER TABLE `build_info` DISABLE KEYS */;
|
||||
INSERT INTO `build_info` (`build`, `majorVersion`, `minorVersion`, `bugfixVersion`, `hotfixVersion`, `winAuthSeed`, `win64AuthSeed`, `mac64AuthSeed`, `winChecksumSeed`, `macChecksumSeed`) VALUES
|
||||
(5875, 1, 12, 1, NULL, NULL, NULL, NULL, '95EDB27C7823B363CBDDAB56A392E7CB73FCCA20', '8D173CC381961EEBABF336F5E6675B101BB513E5'),
|
||||
(6005, 1, 12, 2, NULL, NULL, NULL, NULL, NULL, NULL),
|
||||
@@ -42,8 +44,8 @@ INSERT INTO `build_info` (`build`, `majorVersion`, `minorVersion`, `bugfixVersio
|
||||
(11723, 3, 3, 3, 'a', NULL, NULL, NULL, NULL, NULL),
|
||||
(12340, 3, 3, 5, 'a', NULL, NULL, NULL, 'CDCBBD5188315E6B4D19449D492DBCFAF156A347', 'B706D13FF2F4018839729461E3F8A0E2B5FDC034'),
|
||||
(13930, 3, 3, 5, 'a', NULL, NULL, NULL, NULL, NULL);
|
||||
/*!40000 ALTER TABLE `build_info` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,21 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.ip_banned
|
||||
-- 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',
|
||||
`bandate` int unsigned NOT NULL,
|
||||
@@ -20,13 +23,12 @@ CREATE TABLE IF NOT EXISTS `ip_banned` (
|
||||
`bannedby` varchar(50) NOT NULL DEFAULT '[Console]',
|
||||
`banreason` varchar(255) NOT NULL DEFAULT 'no reason',
|
||||
PRIMARY KEY (`ip`,`bandate`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Banned IPs';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Banned IPs';
|
||||
|
||||
-- Dumpar data för tabell acore_auth.ip_banned: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.ip_banned: ~0 rows (approximately)
|
||||
DELETE FROM `ip_banned`;
|
||||
/*!40000 ALTER TABLE `ip_banned` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `ip_banned` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,33 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.logs
|
||||
-- Dumping structure for table acore_auth.logs
|
||||
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,
|
||||
`level` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`string` text
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_auth.logs: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.logs: ~0 rows (approximately)
|
||||
DELETE FROM `logs`;
|
||||
/*!40000 ALTER TABLE `logs` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `logs` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,21 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.logs_ip_actions
|
||||
-- Dumping structure for table acore_auth.logs_ip_actions
|
||||
DROP TABLE IF EXISTS `logs_ip_actions`;
|
||||
CREATE TABLE IF NOT EXISTS `logs_ip_actions` (
|
||||
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Unique Identifier',
|
||||
`account_id` int unsigned NOT NULL COMMENT 'Account ID',
|
||||
@@ -24,13 +27,12 @@ CREATE TABLE IF NOT EXISTS `logs_ip_actions` (
|
||||
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp',
|
||||
`comment` text 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_0900_ai_ci COMMENT='Used to log ips of individual actions';
|
||||
|
||||
-- Dumpar data för tabell acore_auth.logs_ip_actions: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.logs_ip_actions: ~0 rows (approximately)
|
||||
DELETE FROM `logs_ip_actions`;
|
||||
/*!40000 ALTER TABLE `logs_ip_actions` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `logs_ip_actions` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,33 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.realmcharacters
|
||||
-- Dumping structure for table acore_auth.realmcharacters
|
||||
DROP TABLE IF EXISTS `realmcharacters`;
|
||||
CREATE TABLE IF NOT EXISTS `realmcharacters` (
|
||||
`realmid` int unsigned NOT NULL DEFAULT '0',
|
||||
`acctid` int unsigned NOT NULL,
|
||||
`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_0900_ai_ci COMMENT='Realm Character Tracker';
|
||||
|
||||
-- Dumpar data för tabell acore_auth.realmcharacters: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.realmcharacters: ~0 rows (approximately)
|
||||
DELETE FROM `realmcharacters`;
|
||||
/*!40000 ALTER TABLE `realmcharacters` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `realmcharacters` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,21 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.realmlist
|
||||
-- Dumping structure for table acore_auth.realmlist
|
||||
DROP TABLE IF EXISTS `realmlist`;
|
||||
CREATE TABLE IF NOT EXISTS `realmlist` (
|
||||
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(32) NOT NULL DEFAULT '',
|
||||
@@ -29,15 +32,14 @@ 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_0900_ai_ci COMMENT='Realm System';
|
||||
|
||||
-- Dumpar data för tabell acore_auth.realmlist: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.realmlist: ~0 rows (approximately)
|
||||
DELETE FROM `realmlist`;
|
||||
/*!40000 ALTER TABLE `realmlist` DISABLE KEYS */;
|
||||
INSERT INTO `realmlist` (`id`, `name`, `address`, `localAddress`, `localSubnetMask`, `port`, `icon`, `flag`, `timezone`, `allowedSecurityLevel`, `population`, `gamebuild`) VALUES
|
||||
(1, 'AzerothCore', '127.0.0.1', '127.0.0.1', '255.255.255.0', 8085, 0, 2, 1, 0, 0, 12340);
|
||||
/*!40000 ALTER TABLE `realmlist` ENABLE KEYS */;
|
||||
(1, 'AzerothCore', '127.0.0.1', '127.0.0.1', '255.255.255.0', 8085, 0, 0, 1, 0, 0, 12340);
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,29 +1,31 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.secret_digest
|
||||
-- Dumping structure for table acore_auth.secret_digest
|
||||
DROP TABLE IF EXISTS `secret_digest`;
|
||||
CREATE TABLE IF NOT EXISTS `secret_digest` (
|
||||
`id` int unsigned NOT NULL,
|
||||
`digest` varchar(100) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_auth.secret_digest: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.secret_digest: ~0 rows (approximately)
|
||||
DELETE FROM `secret_digest`;
|
||||
/*!40000 ALTER TABLE `secret_digest` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `secret_digest` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,21 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.updates
|
||||
-- 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.',
|
||||
@@ -20,45 +23,47 @@ CREATE TABLE IF NOT EXISTS `updates` (
|
||||
`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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='List of all applied updates in this database.';
|
||||
|
||||
-- Dumpar data för tabell acore_auth.updates: 31 rows
|
||||
-- Dumping data for table acore_auth.updates: 32 rows
|
||||
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-14 21:59:32', 51),
|
||||
('2021_03_21_00.sql', '1E98E516DAD70DC101E339950C1BCC1D15BE78B6', 'ARCHIVED', '2021-10-14 21:59:32', 102),
|
||||
('2021_03_23_00.sql', '0EA578B7108559B4E54CAE99714F695659EDE6E5', 'ARCHIVED', '2021-10-14 21:59:32', 77),
|
||||
('2021_05_13_00.sql', 'B9CABD6897489B20D6523AEDC61AD9075BCA398A', 'ARCHIVED', '2021-10-14 21:59:32', 104),
|
||||
('2021_05_26_00.sql', '435822D9482BA2C5F0D8E54E3A587611A453B0FA', 'ARCHIVED', '2021-10-14 21:59:32', 71),
|
||||
('2021_05_30_00.sql', 'E70A61123CBE2DC8AF332D03DF1889EB0DF3CEAB', 'ARCHIVED', '2021-10-14 21:59:32', 64),
|
||||
('2021_06_17_00.sql', '36686970C025046FD49FA4BF6F8283A1AE2BE8F3', 'ARCHIVED', '2021-10-14 21:59:33', 52),
|
||||
('2016_08_25_01.sql', 'A5A2BE04C8E8E85CD177B8684DFFEACF71C9CF69', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2016_07_09_00.sql', 'B692C4D5E96D26616E1E655D99DD27F6AC4FFDA6', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2019_04_13_00.sql', '183C28E079DAB46AD6F7C0617E19346CAD043141', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2016_09_04_00.sql', '420ACF7160BF5549BC298EB6A1319969789DA140', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2017_08_19_00.sql', 'E4457FFFFC0D3F86750F07CF88F549529E1B27E5', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2016_08_25_00.sql', '707016C338350676C814D7926DFB6081E57091C3', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2016_07_09_01.sql', 'DE551E4708FE31AAC60CEF69466BBC5DFAC46F79', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2016_07_10_00.sql', '0AE2F7FB1E9C1E2BC2870D0EB817F3C87E0A39B3', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2016_11_18_00.sql', '92D22B3A45466470239402367D94C3791A243EF7', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2016_11_19_00.sql', 'C55E73648F661F40237B03F266F7169D231B3D8D', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2017_08_20_01.sql', 'E6190311E1A12E259C6CD21ACFC8BAA1D3F597DF', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2017_12_05_00.sql', '475860B881DE6E9CAC93AD3B37E7AAA8D63FB1B9', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2018_01_21_00.sql', '570FC5FC653D81B0E498E3EAB6706C9868CE8079', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2018_09_17_00.sql', '31743E771FFA4C92D6B6CF747DE4302814BDF257', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2019_01_05_00.sql', '2449121ABB0D5004BF6941B340F5C294AD95EBE9', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2019_02_08_00.sql', '18FF48FC1B1C238D44198FA1E2D422BAB4C9C338', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2019_02_17_00.sql', '1F4C4A15313A261088E40909DCCAA068EAAAAAAE', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2020_02_07_00.sql', '9549BF7354B4FA5A661EC094A2C3AAF665678152', 'ARCHIVED', '2021-10-14 04:13:44', 1),
|
||||
('2021_10_14_00.sql', 'D4378AFC454DF8351A6DE6C6B6144F82C62980A5', 'ARCHIVED', '2021-10-14 21:59:33', 53),
|
||||
('2021_10_14_01_auth.sql', 'A4495131ADD2AB4AB6682C1621683963247368F0', 'ARCHIVED', '2022-01-21 23:36:20', 20),
|
||||
('2021_11_06_00.sql', 'E08D11C492289879C460BB063457DAD968545752', 'ARCHIVED', '2022-01-21 23:36:20', 39),
|
||||
('2022_01_23_00.sql', '6291006CD2B38EEE02EDDD8AEB6A952477854C77', 'ARCHIVED', '2022-04-24 15:19:14', 28),
|
||||
('2022_04_24_00.sql', 'CFB8D5B896B2A5900F5E5A2262B356E0842405BB', 'ARCHIVED', '2022-08-21 09:56:35', 34),
|
||||
('2022_04_28_00.sql', '26108CBD35D4B885A90CEC25665DCBC00FD06809', 'ARCHIVED', '2022-08-21 09:56:35', 30);
|
||||
('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_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_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),
|
||||
('2018_09_17_00.sql', '31743E771FFA4C92D6B6CF747DE4302814BDF257', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('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),
|
||||
('2020_02_07_00.sql', '9549BF7354B4FA5A661EC094A2C3AAF665678152', 'ARCHIVED', '2021-10-14 07:13:44', 1),
|
||||
('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 */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,25 +1,28 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.updates_include
|
||||
-- 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.',
|
||||
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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC COMMENT='List of directories where we want to include sql updates.';
|
||||
|
||||
-- Dumpar data för tabell acore_auth.updates_include: 3 rows
|
||||
-- Dumping data for table acore_auth.updates_include: 3 rows
|
||||
DELETE FROM `updates_include`;
|
||||
/*!40000 ALTER TABLE `updates_include` DISABLE KEYS */;
|
||||
INSERT INTO `updates_include` (`path`, `state`) VALUES
|
||||
@@ -28,6 +31,7 @@ INSERT INTO `updates_include` (`path`, `state`) VALUES
|
||||
('$/data/sql/archive/db_auth', 'ARCHIVED');
|
||||
/*!40000 ALTER TABLE `updates_include` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,21 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_auth.uptime
|
||||
-- Dumping structure for table acore_auth.uptime
|
||||
DROP TABLE IF EXISTS `uptime`;
|
||||
CREATE TABLE IF NOT EXISTS `uptime` (
|
||||
`realmid` int unsigned NOT NULL,
|
||||
`starttime` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -20,17 +23,17 @@ CREATE TABLE IF NOT EXISTS `uptime` (
|
||||
`maxplayers` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`revision` varchar(255) NOT NULL DEFAULT 'AzerothCore',
|
||||
PRIMARY KEY (`realmid`,`starttime`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Uptime system';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Uptime system';
|
||||
|
||||
-- Dumpar data för tabell acore_auth.uptime: ~3 rows (ungefär)
|
||||
-- Dumping data for table acore_auth.uptime: ~4 rows (approximately)
|
||||
DELETE FROM `uptime`;
|
||||
/*!40000 ALTER TABLE `uptime` DISABLE KEYS */;
|
||||
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)');
|
||||
/*!40000 ALTER TABLE `uptime` ENABLE KEYS */;
|
||||
(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)');
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.account_data
|
||||
-- Dumping structure for table acore_characters.account_data
|
||||
DROP TABLE IF EXISTS `account_data`;
|
||||
CREATE TABLE IF NOT EXISTS `account_data` (
|
||||
`accountId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
|
||||
@@ -20,13 +22,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.account_data: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.account_data: ~0 rows (approximately)
|
||||
DELETE FROM `account_data`;
|
||||
/*!40000 ALTER TABLE `account_data` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `account_data` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.account_instance_times
|
||||
-- Dumping structure for table acore_characters.account_instance_times
|
||||
DROP TABLE IF EXISTS `account_instance_times`;
|
||||
CREATE TABLE IF NOT EXISTS `account_instance_times` (
|
||||
`accountId` int unsigned NOT NULL,
|
||||
`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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.account_instance_times: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.account_instance_times: ~0 rows (approximately)
|
||||
DELETE FROM `account_instance_times`;
|
||||
/*!40000 ALTER TABLE `account_instance_times` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `account_instance_times` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.account_tutorial
|
||||
-- Dumping structure for table acore_characters.account_tutorial
|
||||
DROP TABLE IF EXISTS `account_tutorial`;
|
||||
CREATE TABLE IF NOT EXISTS `account_tutorial` (
|
||||
`accountId` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
|
||||
@@ -25,13 +27,12 @@ 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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.account_tutorial: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.account_tutorial: ~0 rows (approximately)
|
||||
DELETE FROM `account_tutorial`;
|
||||
/*!40000 ALTER TABLE `account_tutorial` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `account_tutorial` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,28 +1,29 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.addons
|
||||
-- Dumping structure for table acore_characters.addons
|
||||
DROP TABLE IF EXISTS `addons`;
|
||||
CREATE TABLE IF NOT EXISTS `addons` (
|
||||
`name` varchar(120) 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_0900_ai_ci COMMENT='Addons';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.addons: ~23 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.addons: ~23 rows (approximately)
|
||||
DELETE FROM `addons`;
|
||||
/*!40000 ALTER TABLE `addons` DISABLE KEYS */;
|
||||
INSERT INTO `addons` (`name`, `crc`) VALUES
|
||||
('Blizzard_AchievementUI', 1276933997),
|
||||
('Blizzard_ArenaUI', 1276933997),
|
||||
@@ -47,8 +48,8 @@ INSERT INTO `addons` (`name`, `crc`) VALUES
|
||||
('Blizzard_TokenUI', 1276933997),
|
||||
('Blizzard_TradeSkillUI', 1276933997),
|
||||
('Blizzard_TrainerUI', 1276933997);
|
||||
/*!40000 ALTER TABLE `addons` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.arena_team
|
||||
-- Dumping structure for table acore_characters.arena_team
|
||||
DROP TABLE IF EXISTS `arena_team`;
|
||||
CREATE TABLE IF NOT EXISTS `arena_team` (
|
||||
`arenaTeamId` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -31,13 +33,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.arena_team: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.arena_team: ~0 rows (approximately)
|
||||
DELETE FROM `arena_team`;
|
||||
/*!40000 ALTER TABLE `arena_team` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `arena_team` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.arena_team_member
|
||||
-- Dumping structure for table acore_characters.arena_team_member
|
||||
DROP TABLE IF EXISTS `arena_team_member`;
|
||||
CREATE TABLE IF NOT EXISTS `arena_team_member` (
|
||||
`arenaTeamId` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -23,13 +25,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.arena_team_member: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.arena_team_member: ~0 rows (approximately)
|
||||
DELETE FROM `arena_team_member`;
|
||||
/*!40000 ALTER TABLE `arena_team_member` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `arena_team_member` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.auctionhouse
|
||||
-- Dumping structure for table acore_characters.auctionhouse
|
||||
DROP TABLE IF EXISTS `auctionhouse`;
|
||||
CREATE TABLE IF NOT EXISTS `auctionhouse` (
|
||||
`id` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -27,13 +29,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.auctionhouse: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.auctionhouse: ~0 rows (approximately)
|
||||
DELETE FROM `auctionhouse`;
|
||||
/*!40000 ALTER TABLE `auctionhouse` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `auctionhouse` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.banned_addons
|
||||
-- Dumping structure for table acore_characters.banned_addons
|
||||
DROP TABLE IF EXISTS `banned_addons`;
|
||||
CREATE TABLE IF NOT EXISTS `banned_addons` (
|
||||
`Id` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
@@ -21,13 +23,12 @@ CREATE TABLE IF NOT EXISTS `banned_addons` (
|
||||
`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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.banned_addons: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.banned_addons: ~0 rows (approximately)
|
||||
DELETE FROM `banned_addons`;
|
||||
/*!40000 ALTER TABLE `banned_addons` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `banned_addons` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.battleground_deserters
|
||||
-- Dumping structure for table acore_characters.battleground_deserters
|
||||
DROP TABLE IF EXISTS `battleground_deserters`;
|
||||
CREATE TABLE IF NOT EXISTS `battleground_deserters` (
|
||||
`guid` int unsigned NOT NULL COMMENT 'characters.guid',
|
||||
@@ -20,11 +22,10 @@ CREATE TABLE IF NOT EXISTS `battleground_deserters` (
|
||||
`datetime` datetime NOT NULL COMMENT 'datetime of the desertion'
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.battleground_deserters: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.battleground_deserters: ~0 rows (approximately)
|
||||
DELETE FROM `battleground_deserters`;
|
||||
/*!40000 ALTER TABLE `battleground_deserters` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `battleground_deserters` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.bugreport
|
||||
-- Dumping structure for table acore_characters.bugreport
|
||||
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,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Debug System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Debug System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.bugreport: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.bugreport: ~0 rows (approximately)
|
||||
DELETE FROM `bugreport`;
|
||||
/*!40000 ALTER TABLE `bugreport` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `bugreport` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.calendar_events
|
||||
-- Dumping structure for table acore_characters.calendar_events
|
||||
DROP TABLE IF EXISTS `calendar_events`;
|
||||
CREATE TABLE IF NOT EXISTS `calendar_events` (
|
||||
`id` bigint unsigned NOT NULL DEFAULT '0',
|
||||
@@ -25,13 +27,12 @@ CREATE TABLE IF NOT EXISTS `calendar_events` (
|
||||
`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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.calendar_events: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.calendar_events: ~0 rows (approximately)
|
||||
DELETE FROM `calendar_events`;
|
||||
/*!40000 ALTER TABLE `calendar_events` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `calendar_events` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.calendar_invites
|
||||
-- Dumping structure for table acore_characters.calendar_invites
|
||||
DROP TABLE IF EXISTS `calendar_invites`;
|
||||
CREATE TABLE IF NOT EXISTS `calendar_invites` (
|
||||
`id` bigint unsigned NOT NULL DEFAULT '0',
|
||||
@@ -24,13 +26,12 @@ CREATE TABLE IF NOT EXISTS `calendar_invites` (
|
||||
`rank` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`text` varchar(255) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.calendar_invites: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.calendar_invites: ~0 rows (approximately)
|
||||
DELETE FROM `calendar_invites`;
|
||||
/*!40000 ALTER TABLE `calendar_invites` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `calendar_invites` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.channels
|
||||
-- Dumping structure for table acore_characters.channels
|
||||
DROP TABLE IF EXISTS `channels`;
|
||||
CREATE TABLE IF NOT EXISTS `channels` (
|
||||
`channelId` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
@@ -23,13 +25,12 @@ CREATE TABLE IF NOT EXISTS `channels` (
|
||||
`password` varchar(32) 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_0900_ai_ci COMMENT='Channel System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.channels: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.channels: ~0 rows (approximately)
|
||||
DELETE FROM `channels`;
|
||||
/*!40000 ALTER TABLE `channels` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `channels` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.channels_bans
|
||||
-- Dumping structure for table acore_characters.channels_bans
|
||||
DROP TABLE IF EXISTS `channels_bans`;
|
||||
CREATE TABLE IF NOT EXISTS `channels_bans` (
|
||||
`channelId` int unsigned NOT NULL,
|
||||
`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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.channels_bans: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.channels_bans: ~0 rows (approximately)
|
||||
DELETE FROM `channels_bans`;
|
||||
/*!40000 ALTER TABLE `channels_bans` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `channels_bans` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.channels_rights
|
||||
-- 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,
|
||||
@@ -22,13 +24,12 @@ CREATE TABLE IF NOT EXISTS `channels_rights` (
|
||||
`delaymessage` varchar(255) NOT NULL DEFAULT '',
|
||||
`moderators` text,
|
||||
PRIMARY KEY (`name`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.channels_rights: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.channels_rights: ~0 rows (approximately)
|
||||
DELETE FROM `channels_rights`;
|
||||
/*!40000 ALTER TABLE `channels_rights` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `channels_rights` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_account_data
|
||||
-- Dumping structure for table acore_characters.character_account_data
|
||||
DROP TABLE IF EXISTS `character_account_data`;
|
||||
CREATE TABLE IF NOT EXISTS `character_account_data` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -20,13 +22,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_account_data: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_account_data: ~0 rows (approximately)
|
||||
DELETE FROM `character_account_data`;
|
||||
/*!40000 ALTER TABLE `character_account_data` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_account_data` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_achievement
|
||||
-- Dumping structure for table acore_characters.character_achievement
|
||||
DROP TABLE IF EXISTS `character_achievement`;
|
||||
CREATE TABLE IF NOT EXISTS `character_achievement` (
|
||||
`guid` int unsigned NOT NULL,
|
||||
`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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_achievement: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_achievement: ~0 rows (approximately)
|
||||
DELETE FROM `character_achievement`;
|
||||
/*!40000 ALTER TABLE `character_achievement` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_achievement` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_achievement_progress
|
||||
-- Dumping structure for table acore_characters.character_achievement_progress
|
||||
DROP TABLE IF EXISTS `character_achievement_progress`;
|
||||
CREATE TABLE IF NOT EXISTS `character_achievement_progress` (
|
||||
`guid` int unsigned NOT NULL,
|
||||
@@ -20,13 +22,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_achievement_progress: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_achievement_progress: ~0 rows (approximately)
|
||||
DELETE FROM `character_achievement_progress`;
|
||||
/*!40000 ALTER TABLE `character_achievement_progress` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_achievement_progress` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_action
|
||||
-- Dumping structure for table acore_characters.character_action
|
||||
DROP TABLE IF EXISTS `character_action`;
|
||||
CREATE TABLE IF NOT EXISTS `character_action` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -21,13 +23,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_action: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_action: ~0 rows (approximately)
|
||||
DELETE FROM `character_action`;
|
||||
/*!40000 ALTER TABLE `character_action` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_action` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_arena_stats
|
||||
-- Dumping structure for table acore_characters.character_arena_stats
|
||||
DROP TABLE IF EXISTS `character_arena_stats`;
|
||||
CREATE TABLE IF NOT EXISTS `character_arena_stats` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -20,13 +22,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_arena_stats: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_arena_stats: ~0 rows (approximately)
|
||||
DELETE FROM `character_arena_stats`;
|
||||
/*!40000 ALTER TABLE `character_arena_stats` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_arena_stats` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_aura
|
||||
-- Dumping structure for table acore_characters.character_aura
|
||||
DROP TABLE IF EXISTS `character_aura`;
|
||||
CREATE TABLE IF NOT EXISTS `character_aura` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -32,13 +34,12 @@ 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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_aura: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_aura: ~0 rows (approximately)
|
||||
DELETE FROM `character_aura`;
|
||||
/*!40000 ALTER TABLE `character_aura` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_aura` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_banned
|
||||
-- Dumping structure for table acore_characters.character_banned
|
||||
DROP TABLE IF EXISTS `character_banned`;
|
||||
CREATE TABLE IF NOT EXISTS `character_banned` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -22,13 +24,12 @@ CREATE TABLE IF NOT EXISTS `character_banned` (
|
||||
`banreason` varchar(255) 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_0900_ai_ci COMMENT='Ban List';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_banned: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_banned: ~0 rows (approximately)
|
||||
DELETE FROM `character_banned`;
|
||||
/*!40000 ALTER TABLE `character_banned` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_banned` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,29 +1,30 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_battleground_random
|
||||
-- Dumping structure for table acore_characters.character_battleground_random
|
||||
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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_battleground_random: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_battleground_random: ~0 rows (approximately)
|
||||
DELETE FROM `character_battleground_random`;
|
||||
/*!40000 ALTER TABLE `character_battleground_random` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_battleground_random` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,30 +1,31 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_brew_of_the_month
|
||||
-- Dumping structure for table acore_characters.character_brew_of_the_month
|
||||
DROP TABLE IF EXISTS `character_brew_of_the_month`;
|
||||
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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_brew_of_the_month: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_brew_of_the_month: ~0 rows (approximately)
|
||||
DELETE FROM `character_brew_of_the_month`;
|
||||
/*!40000 ALTER TABLE `character_brew_of_the_month` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_brew_of_the_month` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_declinedname
|
||||
-- Dumping structure for table acore_characters.character_declinedname
|
||||
DROP TABLE IF EXISTS `character_declinedname`;
|
||||
CREATE TABLE IF NOT EXISTS `character_declinedname` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -22,13 +24,12 @@ CREATE TABLE IF NOT EXISTS `character_declinedname` (
|
||||
`instrumental` varchar(15) NOT NULL DEFAULT '',
|
||||
`prepositional` varchar(15) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_declinedname: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_declinedname: ~0 rows (approximately)
|
||||
DELETE FROM `character_declinedname`;
|
||||
/*!40000 ALTER TABLE `character_declinedname` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_declinedname` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_entry_point
|
||||
-- Dumping structure for table acore_characters.character_entry_point
|
||||
DROP TABLE IF EXISTS `character_entry_point`;
|
||||
CREATE TABLE IF NOT EXISTS `character_entry_point` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -25,13 +27,12 @@ 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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_entry_point: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_entry_point: ~0 rows (approximately)
|
||||
DELETE FROM `character_entry_point`;
|
||||
/*!40000 ALTER TABLE `character_entry_point` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_entry_point` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_equipmentsets
|
||||
-- Dumping structure for table acore_characters.character_equipmentsets
|
||||
DROP TABLE IF EXISTS `character_equipmentsets`;
|
||||
CREATE TABLE IF NOT EXISTS `character_equipmentsets` (
|
||||
`guid` int NOT NULL DEFAULT '0',
|
||||
@@ -43,13 +45,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_equipmentsets: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_equipmentsets: ~0 rows (approximately)
|
||||
DELETE FROM `character_equipmentsets`;
|
||||
/*!40000 ALTER TABLE `character_equipmentsets` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_equipmentsets` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_gifts
|
||||
-- Dumping structure for table acore_characters.character_gifts
|
||||
DROP TABLE IF EXISTS `character_gifts`;
|
||||
CREATE TABLE IF NOT EXISTS `character_gifts` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -21,13 +23,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_gifts: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_gifts: ~0 rows (approximately)
|
||||
DELETE FROM `character_gifts`;
|
||||
/*!40000 ALTER TABLE `character_gifts` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_gifts` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_glyphs
|
||||
-- Dumping structure for table acore_characters.character_glyphs
|
||||
DROP TABLE IF EXISTS `character_glyphs`;
|
||||
CREATE TABLE IF NOT EXISTS `character_glyphs` (
|
||||
`guid` int unsigned NOT NULL,
|
||||
@@ -24,13 +26,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_glyphs: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_glyphs: ~0 rows (approximately)
|
||||
DELETE FROM `character_glyphs`;
|
||||
/*!40000 ALTER TABLE `character_glyphs` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_glyphs` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_homebind
|
||||
-- Dumping structure for table acore_characters.character_homebind
|
||||
DROP TABLE IF EXISTS `character_homebind`;
|
||||
CREATE TABLE IF NOT EXISTS `character_homebind` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -21,14 +23,14 @@ CREATE TABLE IF NOT EXISTS `character_homebind` (
|
||||
`posX` float NOT NULL DEFAULT '0',
|
||||
`posY` float NOT NULL DEFAULT '0',
|
||||
`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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_homebind: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_homebind: ~0 rows (approximately)
|
||||
DELETE FROM `character_homebind`;
|
||||
/*!40000 ALTER TABLE `character_homebind` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_homebind` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_instance
|
||||
-- Dumping structure for table acore_characters.character_instance
|
||||
DROP TABLE IF EXISTS `character_instance`;
|
||||
CREATE TABLE IF NOT EXISTS `character_instance` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -21,13 +23,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_instance: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_instance: ~0 rows (approximately)
|
||||
DELETE FROM `character_instance`;
|
||||
/*!40000 ALTER TABLE `character_instance` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_instance` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_inventory
|
||||
-- Dumping structure for table acore_characters.character_inventory
|
||||
DROP TABLE IF EXISTS `character_inventory`;
|
||||
CREATE TABLE IF NOT EXISTS `character_inventory` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -22,13 +24,12 @@ 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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_inventory: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_inventory: ~0 rows (approximately)
|
||||
DELETE FROM `character_inventory`;
|
||||
/*!40000 ALTER TABLE `character_inventory` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_inventory` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_pet
|
||||
-- Dumping structure for table acore_characters.character_pet
|
||||
DROP TABLE IF EXISTS `character_pet`;
|
||||
CREATE TABLE IF NOT EXISTS `character_pet` (
|
||||
`id` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -35,13 +37,12 @@ CREATE TABLE IF NOT EXISTS `character_pet` (
|
||||
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_0900_ai_ci COMMENT='Pet System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_pet: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_pet: ~0 rows (approximately)
|
||||
DELETE FROM `character_pet`;
|
||||
/*!40000 ALTER TABLE `character_pet` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_pet` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_pet_declinedname
|
||||
-- Dumping structure for table acore_characters.character_pet_declinedname
|
||||
DROP TABLE IF EXISTS `character_pet_declinedname`;
|
||||
CREATE TABLE IF NOT EXISTS `character_pet_declinedname` (
|
||||
`id` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -24,13 +26,12 @@ CREATE TABLE IF NOT EXISTS `character_pet_declinedname` (
|
||||
`prepositional` varchar(12) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `owner_key` (`owner`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_pet_declinedname: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_pet_declinedname: ~0 rows (approximately)
|
||||
DELETE FROM `character_pet_declinedname`;
|
||||
/*!40000 ALTER TABLE `character_pet_declinedname` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_pet_declinedname` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_queststatus
|
||||
-- Dumping structure for table acore_characters.character_queststatus
|
||||
DROP TABLE IF EXISTS `character_queststatus`;
|
||||
CREATE TABLE IF NOT EXISTS `character_queststatus` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -32,13 +34,12 @@ 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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_queststatus: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_queststatus: ~0 rows (approximately)
|
||||
DELETE FROM `character_queststatus`;
|
||||
/*!40000 ALTER TABLE `character_queststatus` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_queststatus` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_queststatus_daily
|
||||
-- Dumping structure for table acore_characters.character_queststatus_daily
|
||||
DROP TABLE IF EXISTS `character_queststatus_daily`;
|
||||
CREATE TABLE IF NOT EXISTS `character_queststatus_daily` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -20,13 +22,12 @@ 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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_queststatus_daily: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_queststatus_daily: ~0 rows (approximately)
|
||||
DELETE FROM `character_queststatus_daily`;
|
||||
/*!40000 ALTER TABLE `character_queststatus_daily` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_queststatus_daily` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_queststatus_monthly
|
||||
-- Dumping structure for table acore_characters.character_queststatus_monthly
|
||||
DROP TABLE IF EXISTS `character_queststatus_monthly`;
|
||||
CREATE TABLE IF NOT EXISTS `character_queststatus_monthly` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_queststatus_monthly: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_queststatus_monthly: ~0 rows (approximately)
|
||||
DELETE FROM `character_queststatus_monthly`;
|
||||
/*!40000 ALTER TABLE `character_queststatus_monthly` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_queststatus_monthly` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_queststatus_rewarded
|
||||
-- Dumping structure for table acore_characters.character_queststatus_rewarded
|
||||
DROP TABLE IF EXISTS `character_queststatus_rewarded`;
|
||||
CREATE TABLE IF NOT EXISTS `character_queststatus_rewarded` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_queststatus_rewarded: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_queststatus_rewarded: ~0 rows (approximately)
|
||||
DELETE FROM `character_queststatus_rewarded`;
|
||||
/*!40000 ALTER TABLE `character_queststatus_rewarded` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_queststatus_rewarded` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_queststatus_seasonal
|
||||
-- Dumping structure for table acore_characters.character_queststatus_seasonal
|
||||
DROP TABLE IF EXISTS `character_queststatus_seasonal`;
|
||||
CREATE TABLE IF NOT EXISTS `character_queststatus_seasonal` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -20,13 +22,12 @@ 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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_queststatus_seasonal: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_queststatus_seasonal: ~0 rows (approximately)
|
||||
DELETE FROM `character_queststatus_seasonal`;
|
||||
/*!40000 ALTER TABLE `character_queststatus_seasonal` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_queststatus_seasonal` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_queststatus_weekly
|
||||
-- Dumping structure for table acore_characters.character_queststatus_weekly
|
||||
DROP TABLE IF EXISTS `character_queststatus_weekly`;
|
||||
CREATE TABLE IF NOT EXISTS `character_queststatus_weekly` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_queststatus_weekly: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_queststatus_weekly: ~0 rows (approximately)
|
||||
DELETE FROM `character_queststatus_weekly`;
|
||||
/*!40000 ALTER TABLE `character_queststatus_weekly` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_queststatus_weekly` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_reputation
|
||||
-- Dumping structure for table acore_characters.character_reputation
|
||||
DROP TABLE IF EXISTS `character_reputation`;
|
||||
CREATE TABLE IF NOT EXISTS `character_reputation` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -20,13 +22,12 @@ 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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_reputation: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_reputation: ~0 rows (approximately)
|
||||
DELETE FROM `character_reputation`;
|
||||
/*!40000 ALTER TABLE `character_reputation` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_reputation` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,34 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_settings
|
||||
-- Dumping structure for table acore_characters.character_settings
|
||||
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,
|
||||
PRIMARY KEY (`guid`,`source`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COMMENT='Player Settings';
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player Settings';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_settings: 0 rows
|
||||
-- Dumping data for table acore_characters.character_settings: 0 rows
|
||||
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, '') */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_skills
|
||||
-- Dumping structure for table acore_characters.character_skills
|
||||
DROP TABLE IF EXISTS `character_skills`;
|
||||
CREATE TABLE IF NOT EXISTS `character_skills` (
|
||||
`guid` int unsigned NOT NULL COMMENT 'Global Unique Identifier',
|
||||
@@ -20,13 +22,12 @@ 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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_skills: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_skills: ~0 rows (approximately)
|
||||
DELETE FROM `character_skills`;
|
||||
/*!40000 ALTER TABLE `character_skills` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_skills` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_social
|
||||
-- Dumping structure for table acore_characters.character_social
|
||||
DROP TABLE IF EXISTS `character_social`;
|
||||
CREATE TABLE IF NOT EXISTS `character_social` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
|
||||
@@ -21,13 +23,12 @@ CREATE TABLE IF NOT EXISTS `character_social` (
|
||||
`note` varchar(48) 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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_social: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_social: ~0 rows (approximately)
|
||||
DELETE FROM `character_social`;
|
||||
/*!40000 ALTER TABLE `character_social` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_social` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_spell
|
||||
-- Dumping structure for table acore_characters.character_spell
|
||||
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',
|
||||
`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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_spell: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_spell: ~0 rows (approximately)
|
||||
DELETE FROM `character_spell`;
|
||||
/*!40000 ALTER TABLE `character_spell` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_spell` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_spell_cooldown
|
||||
-- Dumping structure for table acore_characters.character_spell_cooldown
|
||||
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',
|
||||
@@ -22,13 +24,12 @@ CREATE TABLE IF NOT EXISTS `character_spell_cooldown` (
|
||||
`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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_spell_cooldown: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_spell_cooldown: ~0 rows (approximately)
|
||||
DELETE FROM `character_spell_cooldown`;
|
||||
/*!40000 ALTER TABLE `character_spell_cooldown` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_spell_cooldown` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_stats
|
||||
-- Dumping structure for table acore_characters.character_stats
|
||||
DROP TABLE IF EXISTS `character_stats`;
|
||||
CREATE TABLE IF NOT EXISTS `character_stats` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
|
||||
@@ -48,13 +50,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_stats: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_stats: ~0 rows (approximately)
|
||||
DELETE FROM `character_stats`;
|
||||
/*!40000 ALTER TABLE `character_stats` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_stats` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.character_talent
|
||||
-- Dumping structure for table acore_characters.character_talent
|
||||
DROP TABLE IF EXISTS `character_talent`;
|
||||
CREATE TABLE IF NOT EXISTS `character_talent` (
|
||||
`guid` int unsigned NOT NULL,
|
||||
`spell` mediumint 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.character_talent: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.character_talent: ~0 rows (approximately)
|
||||
DELETE FROM `character_talent`;
|
||||
/*!40000 ALTER TABLE `character_talent` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_talent` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.characters
|
||||
-- Dumping structure for table acore_characters.characters
|
||||
DROP TABLE IF EXISTS `characters`;
|
||||
CREATE TABLE IF NOT EXISTS `characters` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -98,13 +100,12 @@ CREATE TABLE IF NOT EXISTS `characters` (
|
||||
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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.characters: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.characters: ~0 rows (approximately)
|
||||
DELETE FROM `characters`;
|
||||
/*!40000 ALTER TABLE `characters` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `characters` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.corpse
|
||||
-- Dumping structure for table acore_characters.corpse
|
||||
DROP TABLE IF EXISTS `corpse`;
|
||||
CREATE TABLE IF NOT EXISTS `corpse` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
|
||||
@@ -36,13 +38,12 @@ 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_0900_ai_ci COMMENT='Death System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.corpse: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.corpse: ~0 rows (approximately)
|
||||
DELETE FROM `corpse`;
|
||||
/*!40000 ALTER TABLE `corpse` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `corpse` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.creature_respawn
|
||||
-- Dumping structure for table acore_characters.creature_respawn
|
||||
DROP TABLE IF EXISTS `creature_respawn`;
|
||||
CREATE TABLE IF NOT EXISTS `creature_respawn` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -21,13 +23,12 @@ 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_0900_ai_ci COMMENT='Grid Loading System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.creature_respawn: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.creature_respawn: ~0 rows (approximately)
|
||||
DELETE FROM `creature_respawn`;
|
||||
/*!40000 ALTER TABLE `creature_respawn` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `creature_respawn` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.game_event_condition_save
|
||||
-- Dumping structure for table acore_characters.game_event_condition_save
|
||||
DROP TABLE IF EXISTS `game_event_condition_save`;
|
||||
CREATE TABLE IF NOT EXISTS `game_event_condition_save` (
|
||||
`eventEntry` tinyint unsigned NOT NULL,
|
||||
`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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.game_event_condition_save: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.game_event_condition_save: ~0 rows (approximately)
|
||||
DELETE FROM `game_event_condition_save`;
|
||||
/*!40000 ALTER TABLE `game_event_condition_save` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `game_event_condition_save` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.game_event_save
|
||||
-- Dumping structure for table acore_characters.game_event_save
|
||||
DROP TABLE IF EXISTS `game_event_save`;
|
||||
CREATE TABLE IF NOT EXISTS `game_event_save` (
|
||||
`eventEntry` tinyint unsigned NOT NULL,
|
||||
`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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.game_event_save: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.game_event_save: ~0 rows (approximately)
|
||||
DELETE FROM `game_event_save`;
|
||||
/*!40000 ALTER TABLE `game_event_save` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `game_event_save` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.gameobject_respawn
|
||||
-- Dumping structure for table acore_characters.gameobject_respawn
|
||||
DROP TABLE IF EXISTS `gameobject_respawn`;
|
||||
CREATE TABLE IF NOT EXISTS `gameobject_respawn` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
@@ -21,13 +23,12 @@ 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_0900_ai_ci COMMENT='Grid Loading System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.gameobject_respawn: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.gameobject_respawn: ~0 rows (approximately)
|
||||
DELETE FROM `gameobject_respawn`;
|
||||
/*!40000 ALTER TABLE `gameobject_respawn` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `gameobject_respawn` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.gm_subsurvey
|
||||
-- Dumping structure for table acore_characters.gm_subsurvey
|
||||
DROP TABLE IF EXISTS `gm_subsurvey`;
|
||||
CREATE TABLE IF NOT EXISTS `gm_subsurvey` (
|
||||
`surveyId` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
@@ -20,13 +22,12 @@ CREATE TABLE IF NOT EXISTS `gm_subsurvey` (
|
||||
`answer` int unsigned NOT NULL DEFAULT '0',
|
||||
`answerComment` text NOT NULL,
|
||||
PRIMARY KEY (`surveyId`,`questionId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Player System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.gm_subsurvey: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.gm_subsurvey: ~0 rows (approximately)
|
||||
DELETE FROM `gm_subsurvey`;
|
||||
/*!40000 ALTER TABLE `gm_subsurvey` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `gm_subsurvey` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.gm_survey
|
||||
-- Dumping structure for table acore_characters.gm_survey
|
||||
DROP TABLE IF EXISTS `gm_survey`;
|
||||
CREATE TABLE IF NOT EXISTS `gm_survey` (
|
||||
`surveyId` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
@@ -22,13 +24,12 @@ CREATE TABLE IF NOT EXISTS `gm_survey` (
|
||||
`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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.gm_survey: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.gm_survey: ~0 rows (approximately)
|
||||
DELETE FROM `gm_survey`;
|
||||
/*!40000 ALTER TABLE `gm_survey` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `gm_survey` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.gm_ticket
|
||||
-- Dumping structure for table acore_characters.gm_ticket
|
||||
DROP TABLE IF EXISTS `gm_ticket`;
|
||||
CREATE TABLE IF NOT EXISTS `gm_ticket` (
|
||||
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
@@ -36,13 +38,12 @@ CREATE TABLE IF NOT EXISTS `gm_ticket` (
|
||||
`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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.gm_ticket: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.gm_ticket: ~0 rows (approximately)
|
||||
DELETE FROM `gm_ticket`;
|
||||
/*!40000 ALTER TABLE `gm_ticket` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `gm_ticket` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.group_member
|
||||
-- Dumping structure for table acore_characters.group_member
|
||||
DROP TABLE IF EXISTS `group_member`;
|
||||
CREATE TABLE IF NOT EXISTS `group_member` (
|
||||
`guid` int unsigned NOT NULL,
|
||||
@@ -21,13 +23,12 @@ 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_0900_ai_ci COMMENT='Groups';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.group_member: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.group_member: ~0 rows (approximately)
|
||||
DELETE FROM `group_member`;
|
||||
/*!40000 ALTER TABLE `group_member` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `group_member` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.groups
|
||||
-- Dumping structure for table acore_characters.groups
|
||||
DROP TABLE IF EXISTS `groups`;
|
||||
CREATE TABLE IF NOT EXISTS `groups` (
|
||||
`guid` int unsigned NOT NULL,
|
||||
@@ -34,13 +36,12 @@ 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_0900_ai_ci COMMENT='Groups';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.groups: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.groups: ~0 rows (approximately)
|
||||
DELETE FROM `groups`;
|
||||
/*!40000 ALTER TABLE `groups` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `groups` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.guild
|
||||
-- Dumping structure for table acore_characters.guild
|
||||
DROP TABLE IF EXISTS `guild`;
|
||||
CREATE TABLE IF NOT EXISTS `guild` (
|
||||
`guildid` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -28,13 +30,12 @@ CREATE TABLE IF NOT EXISTS `guild` (
|
||||
`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_0900_ai_ci COMMENT='Guild System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.guild: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.guild: ~0 rows (approximately)
|
||||
DELETE FROM `guild`;
|
||||
/*!40000 ALTER TABLE `guild` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `guild` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.guild_bank_eventlog
|
||||
-- Dumping structure for table acore_characters.guild_bank_eventlog
|
||||
DROP TABLE IF EXISTS `guild_bank_eventlog`;
|
||||
CREATE TABLE IF NOT EXISTS `guild_bank_eventlog` (
|
||||
`guildid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Guild Identificator',
|
||||
@@ -28,13 +30,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.guild_bank_eventlog: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.guild_bank_eventlog: ~0 rows (approximately)
|
||||
DELETE FROM `guild_bank_eventlog`;
|
||||
/*!40000 ALTER TABLE `guild_bank_eventlog` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `guild_bank_eventlog` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.guild_bank_item
|
||||
-- Dumping structure for table acore_characters.guild_bank_item
|
||||
DROP TABLE IF EXISTS `guild_bank_item`;
|
||||
CREATE TABLE IF NOT EXISTS `guild_bank_item` (
|
||||
`guildid` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -22,13 +24,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.guild_bank_item: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.guild_bank_item: ~0 rows (approximately)
|
||||
DELETE FROM `guild_bank_item`;
|
||||
/*!40000 ALTER TABLE `guild_bank_item` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `guild_bank_item` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.guild_bank_right
|
||||
-- Dumping structure for table acore_characters.guild_bank_right
|
||||
DROP TABLE IF EXISTS `guild_bank_right`;
|
||||
CREATE TABLE IF NOT EXISTS `guild_bank_right` (
|
||||
`guildid` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -22,13 +24,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.guild_bank_right: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.guild_bank_right: ~0 rows (approximately)
|
||||
DELETE FROM `guild_bank_right`;
|
||||
/*!40000 ALTER TABLE `guild_bank_right` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `guild_bank_right` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.guild_bank_tab
|
||||
-- Dumping structure for table acore_characters.guild_bank_tab
|
||||
DROP TABLE IF EXISTS `guild_bank_tab`;
|
||||
CREATE TABLE IF NOT EXISTS `guild_bank_tab` (
|
||||
`guildid` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -22,13 +24,12 @@ CREATE TABLE IF NOT EXISTS `guild_bank_tab` (
|
||||
`TabText` varchar(500) DEFAULT NULL,
|
||||
PRIMARY KEY (`guildid`,`TabId`),
|
||||
KEY `guildid_key` (`guildid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.guild_bank_tab: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.guild_bank_tab: ~0 rows (approximately)
|
||||
DELETE FROM `guild_bank_tab`;
|
||||
/*!40000 ALTER TABLE `guild_bank_tab` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `guild_bank_tab` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.guild_eventlog
|
||||
-- Dumping structure for table acore_characters.guild_eventlog
|
||||
DROP TABLE IF EXISTS `guild_eventlog`;
|
||||
CREATE TABLE IF NOT EXISTS `guild_eventlog` (
|
||||
`guildid` int unsigned NOT NULL COMMENT 'Guild Identificator',
|
||||
@@ -26,13 +28,12 @@ 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_0900_ai_ci COMMENT='Guild Eventlog';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.guild_eventlog: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.guild_eventlog: ~0 rows (approximately)
|
||||
DELETE FROM `guild_eventlog`;
|
||||
/*!40000 ALTER TABLE `guild_eventlog` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `guild_eventlog` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.guild_member
|
||||
-- Dumping structure for table acore_characters.guild_member
|
||||
DROP TABLE IF EXISTS `guild_member`;
|
||||
CREATE TABLE IF NOT EXISTS `guild_member` (
|
||||
`guildid` int unsigned NOT NULL COMMENT 'Guild Identificator',
|
||||
@@ -23,13 +25,12 @@ CREATE TABLE IF NOT EXISTS `guild_member` (
|
||||
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_0900_ai_ci COMMENT='Guild System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.guild_member: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.guild_member: ~0 rows (approximately)
|
||||
DELETE FROM `guild_member`;
|
||||
/*!40000 ALTER TABLE `guild_member` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `guild_member` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.guild_member_withdraw
|
||||
-- Dumping structure for table acore_characters.guild_member_withdraw
|
||||
DROP TABLE IF EXISTS `guild_member_withdraw`;
|
||||
CREATE TABLE IF NOT EXISTS `guild_member_withdraw` (
|
||||
`guid` int unsigned NOT NULL,
|
||||
@@ -24,13 +26,12 @@ 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_0900_ai_ci COMMENT='Guild Member Daily Withdraws';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.guild_member_withdraw: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.guild_member_withdraw: ~0 rows (approximately)
|
||||
DELETE FROM `guild_member_withdraw`;
|
||||
/*!40000 ALTER TABLE `guild_member_withdraw` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `guild_member_withdraw` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.guild_rank
|
||||
-- Dumping structure for table acore_characters.guild_rank
|
||||
DROP TABLE IF EXISTS `guild_rank`;
|
||||
CREATE TABLE IF NOT EXISTS `guild_rank` (
|
||||
`guildid` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -22,13 +24,12 @@ CREATE TABLE IF NOT EXISTS `guild_rank` (
|
||||
`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_0900_ai_ci COMMENT='Guild System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.guild_rank: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.guild_rank: ~0 rows (approximately)
|
||||
DELETE FROM `guild_rank`;
|
||||
/*!40000 ALTER TABLE `guild_rank` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `guild_rank` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.instance
|
||||
-- Dumping structure for table acore_characters.instance
|
||||
DROP TABLE IF EXISTS `instance`;
|
||||
CREATE TABLE IF NOT EXISTS `instance` (
|
||||
`id` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -25,13 +27,12 @@ CREATE TABLE IF NOT EXISTS `instance` (
|
||||
KEY `map` (`map`),
|
||||
KEY `resettime` (`resettime`),
|
||||
KEY `difficulty` (`difficulty`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.instance: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.instance: ~0 rows (approximately)
|
||||
DELETE FROM `instance`;
|
||||
/*!40000 ALTER TABLE `instance` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `instance` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.instance_reset
|
||||
-- Dumping structure for table acore_characters.instance_reset
|
||||
DROP TABLE IF EXISTS `instance_reset`;
|
||||
CREATE TABLE IF NOT EXISTS `instance_reset` (
|
||||
`mapid` smallint unsigned NOT NULL DEFAULT '0',
|
||||
@@ -20,85 +22,84 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.instance_reset: ~71 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.instance_reset: ~71 rows (approximately)
|
||||
DELETE FROM `instance_reset`;
|
||||
/*!40000 ALTER TABLE `instance_reset` DISABLE KEYS */;
|
||||
INSERT INTO `instance_reset` (`mapid`, `difficulty`, `resettime`) VALUES
|
||||
(249, 0, 1661443200),
|
||||
(249, 1, 1661443200),
|
||||
(269, 1, 1661068800),
|
||||
(309, 0, 1661155200),
|
||||
(409, 0, 1661443200),
|
||||
(469, 0, 1661443200),
|
||||
(509, 0, 1661155200),
|
||||
(531, 0, 1661443200),
|
||||
(532, 0, 1661443200),
|
||||
(533, 0, 1661443200),
|
||||
(533, 1, 1661443200),
|
||||
(534, 0, 1661443200),
|
||||
(540, 1, 1661068800),
|
||||
(542, 1, 1661068800),
|
||||
(543, 1, 1661068800),
|
||||
(544, 0, 1661443200),
|
||||
(545, 1, 1661068800),
|
||||
(546, 1, 1661068800),
|
||||
(547, 1, 1661068800),
|
||||
(548, 0, 1661443200),
|
||||
(550, 0, 1661443200),
|
||||
(552, 1, 1661068800),
|
||||
(553, 1, 1661068800),
|
||||
(554, 1, 1661068800),
|
||||
(555, 1, 1661068800),
|
||||
(556, 1, 1661068800),
|
||||
(557, 1, 1661068800),
|
||||
(558, 1, 1661068800),
|
||||
(560, 1, 1661068800),
|
||||
(564, 0, 1661443200),
|
||||
(565, 0, 1661443200),
|
||||
(568, 0, 1661155200),
|
||||
(574, 1, 1661068800),
|
||||
(575, 1, 1661068800),
|
||||
(576, 1, 1661068800),
|
||||
(578, 1, 1661097600),
|
||||
(580, 0, 1661443200),
|
||||
(585, 1, 1661097600),
|
||||
(595, 1, 1661097600),
|
||||
(598, 1, 1661097600),
|
||||
(599, 1, 1661097600),
|
||||
(600, 1, 1661097600),
|
||||
(601, 1, 1661097600),
|
||||
(602, 1, 1661097600),
|
||||
(603, 0, 1661443200),
|
||||
(603, 1, 1661443200),
|
||||
(604, 1, 1661097600),
|
||||
(608, 1, 1661097600),
|
||||
(615, 0, 1661443200),
|
||||
(615, 1, 1661443200),
|
||||
(616, 0, 1661443200),
|
||||
(616, 1, 1661443200),
|
||||
(619, 1, 1661097600),
|
||||
(624, 0, 1661443200),
|
||||
(624, 1, 1661443200),
|
||||
(631, 0, 1661443200),
|
||||
(631, 1, 1661443200),
|
||||
(631, 2, 1661443200),
|
||||
(631, 3, 1661443200),
|
||||
(632, 1, 1661097600),
|
||||
(649, 0, 1661443200),
|
||||
(649, 1, 1661443200),
|
||||
(649, 2, 1661443200),
|
||||
(649, 3, 1661443200),
|
||||
(650, 1, 1661097600),
|
||||
(658, 1, 1661097600),
|
||||
(668, 1, 1661097600),
|
||||
(724, 0, 1661443200),
|
||||
(724, 1, 1661443200),
|
||||
(724, 2, 1661443200),
|
||||
(724, 3, 1661443200);
|
||||
/*!40000 ALTER TABLE `instance_reset` ENABLE KEYS */;
|
||||
(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);
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.instance_saved_go_state_data
|
||||
-- Dumping structure for table acore_characters.instance_saved_go_state_data
|
||||
DROP TABLE IF EXISTS `instance_saved_go_state_data`;
|
||||
CREATE TABLE IF NOT EXISTS `instance_saved_go_state_data` (
|
||||
`id` int unsigned NOT NULL COMMENT 'instance.id',
|
||||
`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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.instance_saved_go_state_data: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.instance_saved_go_state_data: ~0 rows (approximately)
|
||||
DELETE FROM `instance_saved_go_state_data`;
|
||||
/*!40000 ALTER TABLE `instance_saved_go_state_data` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `instance_saved_go_state_data` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.item_instance
|
||||
-- Dumping structure for table acore_characters.item_instance
|
||||
DROP TABLE IF EXISTS `item_instance`;
|
||||
CREATE TABLE IF NOT EXISTS `item_instance` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -31,13 +33,12 @@ CREATE TABLE IF NOT EXISTS `item_instance` (
|
||||
`text` text,
|
||||
PRIMARY KEY (`guid`),
|
||||
KEY `idx_owner_guid` (`owner_guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Item System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Item System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.item_instance: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.item_instance: ~0 rows (approximately)
|
||||
DELETE FROM `item_instance`;
|
||||
/*!40000 ALTER TABLE `item_instance` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `item_instance` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.item_loot_storage
|
||||
-- Dumping structure for table acore_characters.item_loot_storage
|
||||
DROP TABLE IF EXISTS `item_loot_storage`;
|
||||
CREATE TABLE IF NOT EXISTS `item_loot_storage` (
|
||||
`containerGUID` int unsigned NOT NULL,
|
||||
@@ -28,13 +30,12 @@ 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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.item_loot_storage: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.item_loot_storage: ~0 rows (approximately)
|
||||
DELETE FROM `item_loot_storage`;
|
||||
/*!40000 ALTER TABLE `item_loot_storage` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `item_loot_storage` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.item_refund_instance
|
||||
-- Dumping structure for table acore_characters.item_refund_instance
|
||||
DROP TABLE IF EXISTS `item_refund_instance`;
|
||||
CREATE TABLE IF NOT EXISTS `item_refund_instance` (
|
||||
`item_guid` int unsigned NOT NULL COMMENT 'Item GUID',
|
||||
@@ -20,13 +22,12 @@ 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_0900_ai_ci COMMENT='Item Refund System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.item_refund_instance: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.item_refund_instance: ~0 rows (approximately)
|
||||
DELETE FROM `item_refund_instance`;
|
||||
/*!40000 ALTER TABLE `item_refund_instance` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `item_refund_instance` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,30 +1,31 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.item_soulbound_trade_data
|
||||
-- Dumping structure for table acore_characters.item_soulbound_trade_data
|
||||
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',
|
||||
PRIMARY KEY (`itemGuid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Item Refund System';
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='Item Refund System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.item_soulbound_trade_data: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.item_soulbound_trade_data: ~0 rows (approximately)
|
||||
DELETE FROM `item_soulbound_trade_data`;
|
||||
/*!40000 ALTER TABLE `item_soulbound_trade_data` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `item_soulbound_trade_data` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.lag_reports
|
||||
-- Dumping structure for table acore_characters.lag_reports
|
||||
DROP TABLE IF EXISTS `lag_reports`;
|
||||
CREATE TABLE IF NOT EXISTS `lag_reports` (
|
||||
`reportId` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
@@ -25,13 +27,12 @@ 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_0900_ai_ci COMMENT='Player System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.lag_reports: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.lag_reports: ~0 rows (approximately)
|
||||
DELETE FROM `lag_reports`;
|
||||
/*!40000 ALTER TABLE `lag_reports` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `lag_reports` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,31 +1,32 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.lfg_data
|
||||
-- Dumping structure for table acore_characters.lfg_data
|
||||
DROP TABLE IF EXISTS `lfg_data`;
|
||||
CREATE TABLE IF NOT EXISTS `lfg_data` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`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_0900_ai_ci COMMENT='LFG Data';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.lfg_data: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.lfg_data: ~0 rows (approximately)
|
||||
DELETE FROM `lfg_data`;
|
||||
/*!40000 ALTER TABLE `lfg_data` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `lfg_data` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.log_arena_fights
|
||||
-- Dumping structure for table acore_characters.log_arena_fights
|
||||
DROP TABLE IF EXISTS `log_arena_fights`;
|
||||
CREATE TABLE IF NOT EXISTS `log_arena_fights` (
|
||||
`fight_id` int unsigned NOT NULL,
|
||||
@@ -29,13 +31,14 @@ 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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.log_arena_fights: 0 rows
|
||||
-- Dumping data for table acore_characters.log_arena_fights: 0 rows
|
||||
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, '') */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.log_arena_memberstats
|
||||
-- Dumping structure for table acore_characters.log_arena_memberstats
|
||||
DROP TABLE IF EXISTS `log_arena_memberstats`;
|
||||
CREATE TABLE IF NOT EXISTS `log_arena_memberstats` (
|
||||
`fight_id` int unsigned NOT NULL,
|
||||
@@ -26,13 +28,14 @@ CREATE TABLE IF NOT EXISTS `log_arena_memberstats` (
|
||||
`heal` int unsigned NOT NULL,
|
||||
`kblows` int unsigned NOT NULL,
|
||||
PRIMARY KEY (`fight_id`,`member_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.log_arena_memberstats: 0 rows
|
||||
-- Dumping data for table acore_characters.log_arena_memberstats: 0 rows
|
||||
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, '') */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.log_encounter
|
||||
-- Dumping structure for table acore_characters.log_encounter
|
||||
DROP TABLE IF EXISTS `log_encounter`;
|
||||
CREATE TABLE IF NOT EXISTS `log_encounter` (
|
||||
`time` datetime NOT NULL,
|
||||
@@ -21,13 +23,14 @@ CREATE TABLE IF NOT EXISTS `log_encounter` (
|
||||
`creditType` tinyint unsigned NOT NULL,
|
||||
`creditEntry` int unsigned NOT NULL,
|
||||
`playersInfo` text NOT NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.log_encounter: 0 rows
|
||||
-- Dumping data for table acore_characters.log_encounter: 0 rows
|
||||
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, '') */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.log_money
|
||||
-- Dumping structure for table acore_characters.log_money
|
||||
DROP TABLE IF EXISTS `log_money`;
|
||||
CREATE TABLE IF NOT EXISTS `log_money` (
|
||||
`sender_acc` int unsigned NOT NULL,
|
||||
@@ -25,13 +27,14 @@ CREATE TABLE IF NOT EXISTS `log_money` (
|
||||
`topic` text 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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.log_money: 0 rows
|
||||
-- Dumping data for table acore_characters.log_money: 0 rows
|
||||
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, '') */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.mail
|
||||
-- Dumping structure for table acore_characters.mail
|
||||
DROP TABLE IF EXISTS `mail`;
|
||||
CREATE TABLE IF NOT EXISTS `mail` (
|
||||
`id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
|
||||
@@ -31,13 +33,12 @@ 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_0900_ai_ci COMMENT='Mail System';
|
||||
|
||||
-- Dumpar data för tabell acore_characters.mail: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.mail: ~0 rows (approximately)
|
||||
DELETE FROM `mail`;
|
||||
/*!40000 ALTER TABLE `mail` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `mail` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.mail_items
|
||||
-- Dumping structure for table acore_characters.mail_items
|
||||
DROP TABLE IF EXISTS `mail_items`;
|
||||
CREATE TABLE IF NOT EXISTS `mail_items` (
|
||||
`mail_id` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -21,13 +23,12 @@ 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_0900_ai_ci ROW_FORMAT=DYNAMIC;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.mail_items: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.mail_items: ~0 rows (approximately)
|
||||
DELETE FROM `mail_items`;
|
||||
/*!40000 ALTER TABLE `mail_items` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `mail_items` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,30 +1,31 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.mail_server_character
|
||||
-- Dumping structure for table acore_characters.mail_server_character
|
||||
DROP TABLE IF EXISTS `mail_server_character`;
|
||||
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_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.mail_server_character: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.mail_server_character: ~0 rows (approximately)
|
||||
DELETE FROM `mail_server_character`;
|
||||
/*!40000 ALTER TABLE `mail_server_character` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `mail_server_character` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Värd: 127.0.0.1
|
||||
-- Serverversion: 8.0.28 - MySQL Community Server - GPL
|
||||
-- Server-OS: Win64
|
||||
-- HeidiSQL Version: 11.3.0.6295
|
||||
-- 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 */;
|
||||
|
||||
-- Dumpar struktur för tabell acore_characters.mail_server_template
|
||||
-- Dumping structure for table acore_characters.mail_server_template
|
||||
DROP TABLE IF EXISTS `mail_server_template`;
|
||||
CREATE TABLE IF NOT EXISTS `mail_server_template` (
|
||||
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
||||
@@ -28,13 +30,12 @@ CREATE TABLE IF NOT EXISTS `mail_server_template` (
|
||||
`body` text NOT NULL,
|
||||
`active` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
|
||||
-- Dumpar data för tabell acore_characters.mail_server_template: ~0 rows (ungefär)
|
||||
-- Dumping data for table acore_characters.mail_server_template: ~0 rows (approximately)
|
||||
DELETE FROM `mail_server_template`;
|
||||
/*!40000 ALTER TABLE `mail_server_template` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `mail_server_template` ENABLE KEYS */;
|
||||
|
||||
/*!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 */;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user