Skip to content

Commit

Permalink
TDB 915.22012 - 2022/01/15
Browse files Browse the repository at this point in the history
  • Loading branch information
TDB Release committed Jan 15, 2022
1 parent bf35731 commit 1761f72
Show file tree
Hide file tree
Showing 153 changed files with 418 additions and 347 deletions.
4 changes: 2 additions & 2 deletions revision_data.h.in.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
#define _SOURCE_DIRECTORY R"(@CMAKE_SOURCE_DIR@)"
#define _BUILD_DIRECTORY R"(@BUILDDIR@)"
#define _MYSQL_EXECUTABLE R"(@MYSQL_EXECUTABLE@)"
#define _FULL_DATABASE "TDB_full_world_915.22011_2022_01_02.sql"
#define _HOTFIXES_DATABASE "TDB_full_hotfixes_915.22011_2022_01_02.sql"
#define _FULL_DATABASE "TDB_full_world_915.22012_2022_01_15.sql"
#define _HOTFIXES_DATABASE "TDB_full_hotfixes_915.22012_2022_01_15.sql"
#define VER_COMPANYNAME_STR "TrinityCore Developers"
#define VER_LEGALCOPYRIGHT_STR "(c)2008-2019 TrinityCore"
#define VER_FILEVERSION 0,0,0
Expand Down
121 changes: 61 additions & 60 deletions sql/base/auth_database.sql

Large diffs are not rendered by default.

161 changes: 81 additions & 80 deletions sql/base/characters_database.sql

Large diffs are not rendered by default.

59 changes: 49 additions & 10 deletions sql/base/dev/hotfixes_database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2174,10 +2174,10 @@ CREATE TABLE `creature` (
`DisplayIDProbability2` float NOT NULL DEFAULT '0',
`DisplayIDProbability3` float NOT NULL DEFAULT '0',
`DisplayIDProbability4` float NOT NULL DEFAULT '0',
`Name` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`FemaleName` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`SubName` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`FemaleSubName` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`Name` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`FemaleName` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`SubName` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`FemaleSubName` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`Type` mediumint unsigned NOT NULL DEFAULT '0',
`Family` tinyint unsigned NOT NULL DEFAULT '0',
`Classification` tinyint unsigned NOT NULL DEFAULT '0',
Expand Down Expand Up @@ -9113,6 +9113,45 @@ CREATE TABLE `ui_splash_screen_locale` (
PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `unit_condition`
--

DROP TABLE IF EXISTS `unit_condition`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `unit_condition` (
`ID` int unsigned NOT NULL DEFAULT '0',
`Flags` tinyint unsigned NOT NULL DEFAULT '0',
`Variable1` tinyint unsigned NOT NULL DEFAULT '0',
`Variable2` tinyint unsigned NOT NULL DEFAULT '0',
`Variable3` tinyint unsigned NOT NULL DEFAULT '0',
`Variable4` tinyint unsigned NOT NULL DEFAULT '0',
`Variable5` tinyint unsigned NOT NULL DEFAULT '0',
`Variable6` tinyint unsigned NOT NULL DEFAULT '0',
`Variable7` tinyint unsigned NOT NULL DEFAULT '0',
`Variable8` tinyint unsigned NOT NULL DEFAULT '0',
`Op1` tinyint NOT NULL DEFAULT '0',
`Op2` tinyint NOT NULL DEFAULT '0',
`Op3` tinyint NOT NULL DEFAULT '0',
`Op4` tinyint NOT NULL DEFAULT '0',
`Op5` tinyint NOT NULL DEFAULT '0',
`Op6` tinyint NOT NULL DEFAULT '0',
`Op7` tinyint NOT NULL DEFAULT '0',
`Op8` tinyint NOT NULL DEFAULT '0',
`Value1` int NOT NULL DEFAULT '0',
`Value2` int NOT NULL DEFAULT '0',
`Value3` int NOT NULL DEFAULT '0',
`Value4` int NOT NULL DEFAULT '0',
`Value5` int NOT NULL DEFAULT '0',
`Value6` int NOT NULL DEFAULT '0',
`Value7` int NOT NULL DEFAULT '0',
`Value8` int NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Table structure for table `unit_power_bar`
--
Expand Down Expand Up @@ -9191,9 +9230,9 @@ DROP TABLE IF EXISTS `updates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `updates` (
`name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'filename with extension of the update.',
`hash` char(40) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'sha1 hash of the sql file.',
`state` enum('RELEASED','ARCHIVED') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if an update is released or archived.',
`name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'filename with extension of the update.',
`hash` char(40) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'sha1 hash of the sql file.',
`state` enum('RELEASED','ARCHIVED') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if an update is released or archived.',
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'timestamp when the query was applied.',
`speed` int unsigned NOT NULL DEFAULT '0' COMMENT 'time the query takes to apply in ms.',
PRIMARY KEY (`name`)
Expand All @@ -9208,8 +9247,8 @@ DROP TABLE IF EXISTS `updates_include`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `updates_include` (
`path` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
`state` enum('RELEASED','ARCHIVED') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
`path` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
`state` enum('RELEASED','ARCHIVED') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
PRIMARY KEY (`path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='List of directories where we want to include sql updates.';
/*!40101 SET character_set_client = @saved_cs_client */;
Expand Down Expand Up @@ -9466,4 +9505,4 @@ CREATE TABLE `world_state_expression` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2022-01-02 21:22:42
-- Dump completed on 2022-01-15 23:25:07
Loading

0 comments on commit 1761f72

Please sign in to comment.