diff options
| author | Jeremy <Golrag@users.noreply.github.com> | 2023-12-12 05:10:17 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-12 05:10:17 +0100 |
| commit | da0ec4f830c4428a17fd4e52124dca6c63e25961 (patch) | |
| tree | 3bc8509ba1463359dacb5dcbca1c2f18ddd47057 /sql | |
| parent | be391380f3db48f9e7d81f11174cc8198590bd95 (diff) | |
Core/Battleground: Rework BattlegroundScore (#29438)
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/master/2023_12_12_00_hotfixes.sql | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2023_12_12_00_hotfixes.sql b/sql/updates/hotfixes/master/2023_12_12_00_hotfixes.sql new file mode 100644 index 00000000000..ae5ffd3f20c --- /dev/null +++ b/sql/updates/hotfixes/master/2023_12_12_00_hotfixes.sql @@ -0,0 +1,60 @@ +-- +-- Table structure for table `pvp_stat` +-- + +DROP TABLE IF EXISTS `pvp_stat`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `pvp_stat` ( + `Description` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MapID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) 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 */; + +-- +-- Dumping data for table `pvp_stat` +-- + +LOCK TABLES `pvp_stat` WRITE; +/*!40000 ALTER TABLE `pvp_stat` DISABLE KEYS */; +/*!40000 ALTER TABLE `pvp_stat` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pvp_stat_locale` +-- + +DROP TABLE IF EXISTS `pvp_stat_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `pvp_stat_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pvp_stat_locale` +-- + +LOCK TABLES `pvp_stat_locale` WRITE; +/*!40000 ALTER TABLE `pvp_stat_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `pvp_stat_locale` ENABLE KEYS */; +UNLOCK TABLES; |
