diff options
| author | Shauren <shauren.trinity@gmail.com> | 2021-06-06 17:56:11 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2021-06-06 17:56:11 +0200 |
| commit | b607bb0a93892734c6a2ce16afc5ea92ffb7fe50 (patch) | |
| tree | 213087903a1f64f5fd770863e471e7122f9f2d60 /sql/updates/hotfixes | |
| parent | c2751f9195959a199413e332d2b595a60e4a6d35 (diff) | |
Core/DataStores: Load ItemModifiedAppearanceExtra.db2
Diffstat (limited to 'sql/updates/hotfixes')
| -rw-r--r-- | sql/updates/hotfixes/master/2021_06_06_01_hotfixes.sql | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/master/2021_06_06_01_hotfixes.sql b/sql/updates/hotfixes/master/2021_06_06_01_hotfixes.sql new file mode 100644 index 00000000000..c0c43673fdf --- /dev/null +++ b/sql/updates/hotfixes/master/2021_06_06_01_hotfixes.sql @@ -0,0 +1,17 @@ +-- +-- Table structure for table `item_modified_appearance_extra` +-- +DROP TABLE IF EXISTS `item_modified_appearance_extra`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_modified_appearance_extra` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `IconFileDataID` int(11) NOT NULL DEFAULT '0', + `UnequippedIconFileDataID` int(11) NOT NULL DEFAULT '0', + `SheatheType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `DisplayWeaponSubclassID` tinyint(4) NOT NULL DEFAULT '0', + `DisplayInventoryType` tinyint(4) 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 */; |
