Quickfacts

* where applicable:
   - show typeId
   - show english name if currently localized
   - show percentage attained by synced profiles
 * fixed some typos
This commit is contained in:
Sarjuuk
2025-10-03 00:47:57 +02:00
parent bc112b2b16
commit 60eb816002
38 changed files with 462 additions and 23 deletions

View File

@@ -1729,6 +1729,7 @@ CREATE TABLE `aowow_profiler_completion_quests` (
`id` int(10) unsigned NOT NULL,
`questId` mediumint(8) unsigned NOT NULL,
KEY `id` (`id`),
KEY `typeId` (`questId`),
CONSTRAINT `FK_pr_completion_quests` FOREIGN KEY (`id`) REFERENCES `aowow_profiler_profiles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -1745,6 +1746,7 @@ CREATE TABLE `aowow_profiler_completion_reputation` (
`factionId` smallint(5) unsigned NOT NULL,
`standing` mediumint(9) DEFAULT NULL,
KEY `id` (`id`),
KEY `typeId` (`factionId`),
CONSTRAINT `FK_pr_completion_reputation` FOREIGN KEY (`id`) REFERENCES `aowow_profiler_profiles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -1778,6 +1780,7 @@ CREATE TABLE `aowow_profiler_completion_spells` (
`id` int(10) unsigned NOT NULL,
`spellId` mediumint(8) unsigned NOT NULL,
KEY `id` (`id`),
KEY `typeId` (`spellId`),
CONSTRAINT `FK_pr_completion_spells` FOREIGN KEY (`id`) REFERENCES `aowow_profiler_profiles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -1811,6 +1814,7 @@ CREATE TABLE `aowow_profiler_completion_titles` (
`id` int(10) unsigned NOT NULL,
`titleId` tinyint(3) unsigned NOT NULL,
KEY `id` (`id`),
KEY `typeId` (`titleId`),
CONSTRAINT `FK_pr_completion_titles` FOREIGN KEY (`id`) REFERENCES `aowow_profiler_profiles` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

View File

@@ -0,0 +1,11 @@
ALTER TABLE aowow_profiler_completion_quests
ADD KEY `typeId` (`questId`);
ALTER TABLE aowow_profiler_completion_reputation
ADD KEY `typeId` (`factionId`);
ALTER TABLE aowow_profiler_completion_spells
ADD KEY `typeId` (`spellId`);
ALTER TABLE aowow_profiler_completion_titles
ADD KEY `typeId` (`titleId`);

View File

@@ -0,0 +1 @@
UPDATE `aowow_dbversion` SET `build` = CONCAT(IFNULL(`build`, ''), ' globaljs');