latest sources commit
This commit is contained in:
113
data/sql/base/db_characters/characters.sql
Normal file
113
data/sql/base/db_characters/characters.sql
Normal file
@@ -0,0 +1,113 @@
|
||||
-- --------------------------------------------------------
|
||||
-- Host: 127.0.0.1
|
||||
-- Server version: 8.0.29 - MySQL Community Server - GPL
|
||||
-- Server OS: Win64
|
||||
-- HeidiSQL Version: 12.0.0.6468
|
||||
-- --------------------------------------------------------
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET NAMES utf8 */;
|
||||
/*!50503 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
-- Dumping structure for table acore_characters.characters
|
||||
DROP TABLE IF EXISTS `characters`;
|
||||
CREATE TABLE IF NOT EXISTS `characters` (
|
||||
`guid` int unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`account` int unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
|
||||
`name` varchar(12) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
|
||||
`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 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 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 COLLATE utf8mb4_unicode_ci,
|
||||
`equipmentCache` longtext COLLATE utf8mb4_unicode_ci,
|
||||
`ammoId` int unsigned NOT NULL DEFAULT '0',
|
||||
`knownTitles` longtext COLLATE utf8mb4_unicode_ci,
|
||||
`actionBars` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`grantableLevels` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`order` tinyint DEFAULT NULL,
|
||||
`creation_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`deleteInfos_Account` int unsigned DEFAULT NULL,
|
||||
`deleteInfos_Name` varchar(12) 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';
|
||||
|
||||
-- Dumping data for table acore_characters.characters: ~0 rows (approximately)
|
||||
DELETE FROM `characters`;
|
||||
|
||||
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
||||
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
|
||||
Reference in New Issue
Block a user