mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-13 03:32:28 -04:00
TDB 1027.24051 - 2024/05/11
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
--
|
||||
-- Host: localhost Database: world
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 8.0.36-0ubuntu0.20.04.1
|
||||
-- Server version 8.0.36-0ubuntu0.22.04.1
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
@@ -367,6 +367,21 @@ CREATE TABLE `battlefield_template` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `battleground_scripts`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `battleground_scripts`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `battleground_scripts` (
|
||||
`MapId` int NOT NULL,
|
||||
`BattlemasterListId` int NOT NULL DEFAULT '0',
|
||||
`ScriptName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`MapId`,`BattlemasterListId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `battleground_template`
|
||||
--
|
||||
@@ -593,8 +608,7 @@ CREATE TABLE `creature` (
|
||||
`spawntimesecs` int unsigned NOT NULL DEFAULT '120',
|
||||
`wander_distance` float NOT NULL DEFAULT '0',
|
||||
`currentwaypoint` int unsigned NOT NULL DEFAULT '0',
|
||||
`curhealth` int unsigned NOT NULL DEFAULT '1',
|
||||
`curmana` int unsigned NOT NULL DEFAULT '0',
|
||||
`curHealthPct` int unsigned NOT NULL DEFAULT '100',
|
||||
`MovementType` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`npcflag` bigint unsigned DEFAULT NULL,
|
||||
`unit_flags` int unsigned DEFAULT NULL,
|
||||
@@ -781,10 +795,7 @@ DROP TABLE IF EXISTS `creature_movement_override`;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `creature_movement_override` (
|
||||
`SpawnId` bigint unsigned NOT NULL DEFAULT '0',
|
||||
`Ground` tinyint unsigned DEFAULT NULL,
|
||||
`Swim` tinyint unsigned DEFAULT NULL,
|
||||
`Flight` tinyint unsigned DEFAULT NULL,
|
||||
`Rooted` tinyint unsigned DEFAULT NULL,
|
||||
`HoverInitiallyEnabled` tinyint unsigned DEFAULT NULL,
|
||||
`Chase` tinyint unsigned DEFAULT NULL,
|
||||
`Random` tinyint unsigned DEFAULT NULL,
|
||||
`InteractionPauseTimer` int unsigned DEFAULT NULL COMMENT 'Time (in milliseconds) during which creature will not move after interaction with player',
|
||||
@@ -876,6 +887,28 @@ CREATE TABLE `creature_queststarter` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Creature System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `creature_static_flags_override`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `creature_static_flags_override`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `creature_static_flags_override` (
|
||||
`SpawnId` bigint unsigned NOT NULL,
|
||||
`DifficultyId` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`StaticFlags1` int unsigned DEFAULT NULL,
|
||||
`StaticFlags2` int unsigned DEFAULT NULL,
|
||||
`StaticFlags3` int unsigned DEFAULT NULL,
|
||||
`StaticFlags4` int unsigned DEFAULT NULL,
|
||||
`StaticFlags5` int unsigned DEFAULT NULL,
|
||||
`StaticFlags6` int unsigned DEFAULT NULL,
|
||||
`StaticFlags7` int unsigned DEFAULT NULL,
|
||||
`StaticFlags8` int unsigned DEFAULT NULL,
|
||||
PRIMARY KEY (`SpawnId`,`DifficultyId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `creature_summon_groups`
|
||||
--
|
||||
@@ -1096,10 +1129,7 @@ DROP TABLE IF EXISTS `creature_template_movement`;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `creature_template_movement` (
|
||||
`CreatureId` int unsigned NOT NULL DEFAULT '0',
|
||||
`Ground` tinyint unsigned DEFAULT NULL,
|
||||
`Swim` tinyint unsigned DEFAULT NULL,
|
||||
`Flight` tinyint unsigned DEFAULT NULL,
|
||||
`Rooted` tinyint unsigned DEFAULT NULL,
|
||||
`HoverInitiallyEnabled` tinyint unsigned DEFAULT NULL,
|
||||
`Chase` tinyint unsigned DEFAULT NULL,
|
||||
`Random` tinyint unsigned DEFAULT NULL,
|
||||
`InteractionPauseTimer` int unsigned DEFAULT NULL COMMENT 'Time (in milliseconds) during which creature will not move after interaction with player',
|
||||
@@ -1229,6 +1259,21 @@ CREATE TABLE `criteria_data` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Achievment system';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `destructible_hitpoint`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `destructible_hitpoint`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `destructible_hitpoint` (
|
||||
`Id` int unsigned NOT NULL,
|
||||
`IntactNumHits` int unsigned NOT NULL,
|
||||
`DamagedNumHits` int unsigned NOT NULL,
|
||||
PRIMARY KEY (`Id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='This table contains data about destructible building health';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `disables`
|
||||
--
|
||||
@@ -1583,7 +1628,7 @@ CREATE TABLE `game_tele` (
|
||||
`map` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=2151 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tele Command';
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=2167 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tele Command';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
@@ -4073,11 +4118,13 @@ CREATE TABLE `smart_scripts` (
|
||||
`action_param5` int unsigned NOT NULL DEFAULT '0',
|
||||
`action_param6` int unsigned NOT NULL DEFAULT '0',
|
||||
`action_param7` int unsigned NOT NULL DEFAULT '0',
|
||||
`action_param_string` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`target_type` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`target_param1` int unsigned NOT NULL DEFAULT '0',
|
||||
`target_param2` int unsigned NOT NULL DEFAULT '0',
|
||||
`target_param3` int unsigned NOT NULL DEFAULT '0',
|
||||
`target_param4` int unsigned NOT NULL DEFAULT '0',
|
||||
`target_param_string` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`target_x` float NOT NULL DEFAULT '0',
|
||||
`target_y` float NOT NULL DEFAULT '0',
|
||||
`target_z` float NOT NULL DEFAULT '0',
|
||||
@@ -4758,6 +4805,7 @@ CREATE TABLE `waypoint_path` (
|
||||
`PathId` int unsigned NOT NULL,
|
||||
`MoveType` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`Flags` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`Velocity` float DEFAULT NULL,
|
||||
`Comment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
PRIMARY KEY (`PathId`) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
|
||||
@@ -4886,4 +4934,4 @@ CREATE TABLE `world_state` (
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2024-02-08 0:56:29
|
||||
-- Dump completed on 2024-05-11 3:06:56
|
||||
|
||||
Reference in New Issue
Block a user