delve tables still nor work wait for me

This commit is contained in:
luis
2026-03-27 13:53:34 -03:00
parent 804cf6f9f6
commit b3c325d539
@@ -0,0 +1,60 @@
-- 1. DelvesSeason.db2
DROP TABLE IF EXISTS `delves_season`;
CREATE TABLE IF NOT EXISTS `delves_season` (
`ID` INT UNSIGNED NOT NULL DEFAULT '0',
`Field_11_0_7_57361_000` INT UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Season ID or Flag (unknown field)',
`VerifiedBuild` SMALLINT NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `idx_verifiedbuild` (`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Delves Season Data (DelvesSeason.db2)';
-- 2. DelvesSeasonXSpell.db2
DROP TABLE IF EXISTS `delves_season_x_spell`;
CREATE TABLE IF NOT EXISTS `delves_season_x_spell` (
`ID` INT UNSIGNED NOT NULL DEFAULT '0',
`SpellID` INT UNSIGNED NOT NULL DEFAULT '0',
`DelvesSeasonID` INT UNSIGNED NOT NULL DEFAULT '0',
`VerifiedBuild` SMALLINT NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `DelvesSeasonID` (`DelvesSeasonID`),
KEY `idx_verifiedbuild` (`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Delves Season to Spell mapping (DelvesSeasonXSpell.db2)';
-- 3. PlayerCompanionInfo.db2
DROP TABLE IF EXISTS `player_companion_info`;
CREATE TABLE IF NOT EXISTS `player_companion_info` (
`ID` INT UNSIGNED NOT NULL DEFAULT '0',
`Name` TEXT NOT NULL,
`CreatureDisplayInfoID` INT UNSIGNED NOT NULL DEFAULT '0',
`TraitTreeID` INT UNSIGNED NOT NULL DEFAULT '0',
`TraitConfigType` TINYINT UNSIGNED NOT NULL DEFAULT '0',
`TraitSystemID` INT UNSIGNED NOT NULL DEFAULT '0',
`UiTextureAtlasMemberID` INT UNSIGNED NOT NULL DEFAULT '0',
`Field_11_0_0_55793_006` INT UNSIGNED NOT NULL DEFAULT '0',
`Field_11_0_0_55793_007` INT UNSIGNED NOT NULL DEFAULT '0',
`Field_11_0_0_55793_008` INT UNSIGNED NOT NULL DEFAULT '0',
`Field_11_0_5_56647_009` INT UNSIGNED NOT NULL DEFAULT '0',
`Field_11_0_5_56647_010` INT UNSIGNED NOT NULL DEFAULT '0',
`Field_11_0_5_56647_011` INT UNSIGNED NOT NULL DEFAULT '0',
`Field_11_0_7_57361_012` INT UNSIGNED NOT NULL DEFAULT '0',
`ParentID` INT UNSIGNED NOT NULL DEFAULT '0',
`VerifiedBuild` SMALLINT NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
KEY `idx_verifiedbuild` (`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player Companion Info (PlayerCompanionInfo.db2)';
-- Locale table for PlayerCompanionInfo
DROP TABLE IF EXISTS `player_companion_info_locale`;
CREATE TABLE IF NOT EXISTS `player_companion_info_locale` (
`ID` INT UNSIGNED NOT NULL DEFAULT '0',
`locale` VARCHAR(4) NOT NULL DEFAULT '',
`Name_lang` TEXT NOT NULL,
`VerifiedBuild` SMALLINT NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`, `locale`),
KEY `idx_verifiedbuild` (`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Localized names for PlayerCompanionInfo';