Initial commit
This commit is contained in:
128
data/sql/base/db_characters/characters.sql
Normal file
128
data/sql/base/db_characters/characters.sql
Normal file
@@ -0,0 +1,128 @@
|
||||
-- MySQL dump 10.13 Distrib 8.4.3, for Win64 (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: acore_characters
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 8.4.3
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!50503 SET NAMES utf8mb4 */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!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 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `characters`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `characters`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `characters` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`account` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
|
||||
`name` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
||||
`race` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`class` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`gender` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`level` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`xp` int unsigned NOT NULL DEFAULT '0',
|
||||
`money` int unsigned NOT NULL DEFAULT '0',
|
||||
`skin` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`face` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`hairStyle` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`hairColor` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`facialStyle` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`bankSlots` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`restState` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`playerFlags` int unsigned NOT NULL DEFAULT '0',
|
||||
`position_x` float NOT NULL DEFAULT '0',
|
||||
`position_y` float NOT NULL DEFAULT '0',
|
||||
`position_z` float NOT NULL DEFAULT '0',
|
||||
`map` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
|
||||
`instance_id` int unsigned NOT NULL DEFAULT '0',
|
||||
`instance_mode_mask` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`orientation` float NOT NULL DEFAULT '0',
|
||||
`taximask` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`online` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`cinematic` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`totaltime` int unsigned NOT NULL DEFAULT '0',
|
||||
`leveltime` int unsigned NOT NULL DEFAULT '0',
|
||||
`logout_time` int unsigned NOT NULL DEFAULT '0',
|
||||
`is_logout_resting` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`rest_bonus` float NOT NULL DEFAULT '0',
|
||||
`resettalents_cost` int unsigned NOT NULL DEFAULT '0',
|
||||
`resettalents_time` int unsigned NOT NULL DEFAULT '0',
|
||||
`trans_x` float NOT NULL DEFAULT '0',
|
||||
`trans_y` float NOT NULL DEFAULT '0',
|
||||
`trans_z` float NOT NULL DEFAULT '0',
|
||||
`trans_o` float NOT NULL DEFAULT '0',
|
||||
`transguid` int DEFAULT '0',
|
||||
`extra_flags` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`stable_slots` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`at_login` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`zone` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`death_expire_time` int unsigned NOT NULL DEFAULT '0',
|
||||
`taxi_path` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`arenaPoints` int unsigned NOT NULL DEFAULT '0',
|
||||
`totalHonorPoints` int unsigned NOT NULL DEFAULT '0',
|
||||
`todayHonorPoints` int unsigned NOT NULL DEFAULT '0',
|
||||
`yesterdayHonorPoints` int unsigned NOT NULL DEFAULT '0',
|
||||
`totalKills` int unsigned NOT NULL DEFAULT '0',
|
||||
`todayKills` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`yesterdayKills` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`chosenTitle` int unsigned NOT NULL DEFAULT '0',
|
||||
`knownCurrencies` bigint unsigned NOT NULL DEFAULT '0',
|
||||
`watchedFaction` int unsigned NOT NULL DEFAULT '0',
|
||||
`drunk` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`health` int unsigned NOT NULL DEFAULT '0',
|
||||
`power1` int unsigned NOT NULL DEFAULT '0',
|
||||
`power2` int unsigned NOT NULL DEFAULT '0',
|
||||
`power3` int unsigned NOT NULL DEFAULT '0',
|
||||
`power4` int unsigned NOT NULL DEFAULT '0',
|
||||
`power5` int unsigned NOT NULL DEFAULT '0',
|
||||
`power6` int unsigned NOT NULL DEFAULT '0',
|
||||
`power7` int unsigned NOT NULL DEFAULT '0',
|
||||
`latency` int unsigned DEFAULT '0',
|
||||
`talentGroupsCount` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
`activeTalentGroup` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`exploredZones` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`equipmentCache` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`ammoId` int unsigned NOT NULL DEFAULT '0',
|
||||
`knownTitles` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`actionBars` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`grantableLevels` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`order` tinyint DEFAULT NULL,
|
||||
`creation_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`deleteInfos_Account` int unsigned DEFAULT NULL,
|
||||
`deleteInfos_Name` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`deleteDate` int unsigned DEFAULT NULL,
|
||||
`innTriggerId` int unsigned NOT NULL,
|
||||
`extraBonusTalentCount` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`),
|
||||
KEY `idx_account` (`account`),
|
||||
KEY `idx_online` (`online`),
|
||||
KEY `idx_name` (`name`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `characters`
|
||||
--
|
||||
|
||||
LOCK TABLES `characters` WRITE;
|
||||
/*!40000 ALTER TABLE `characters` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `characters` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-12-29 17:55:02
|
||||
Reference in New Issue
Block a user