From 55a8d204719ff1d75529d61dd7cf4b8513ee3c76 Mon Sep 17 00:00:00 2001 From: Remco Date: Wed, 5 Nov 2025 20:22:58 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=86=99=20Fixed=20whole=20catalog=20struct?= =?UTF-8?q?ure=20to=20load=20faster=20more=20stable=20=F0=9F=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sql files/Dutch/catalog_items.sql | 4 ++-- Sql files/Dutch/items_base.sql | 14 ++++++++------ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Sql files/Dutch/catalog_items.sql b/Sql files/Dutch/catalog_items.sql index d2cf83888c..811e5eb916 100644 --- a/Sql files/Dutch/catalog_items.sql +++ b/Sql files/Dutch/catalog_items.sql @@ -11,7 +11,7 @@ Target Server Version : 110803 (11.8.3-MariaDB-ubu2404) File Encoding : 65001 - Date: 05/11/2025 19:27:24 + Date: 05/11/2025 20:17:38 */ SET NAMES utf8mb4; @@ -42,7 +42,7 @@ CREATE TABLE `catalog_items` ( INDEX `page_id`(`page_id` ASC) USING BTREE, INDEX `catalog_name`(`catalog_name` ASC) USING BTREE, INDEX `costs`(`cost_credits` ASC, `cost_points` ASC, `points_type` ASC) USING BTREE, - INDEX `id`(`id` ASC) USING BTREE + INDEX `item_ids`(`item_ids`(255) ASC) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 537246 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_uca1400_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- diff --git a/Sql files/Dutch/items_base.sql b/Sql files/Dutch/items_base.sql index 929ad7b3d1..cef4e4b8a0 100644 --- a/Sql files/Dutch/items_base.sql +++ b/Sql files/Dutch/items_base.sql @@ -1,17 +1,17 @@ /* Navicat Premium Dump SQL - Source Server : future + Source Server : Epicnabbo ryzen Source Server Type : MySQL - Source Server Version : 120101 (12.1.1-MariaDB-ubu2404) - Source Host : 5.181.134.242:3306 + Source Server Version : 110803 (11.8.3-MariaDB-ubu2404) + Source Host : 5.252.100.130:3306 Source Schema : habbo Target Server Type : MySQL - Target Server Version : 120101 (12.1.1-MariaDB-ubu2404) + Target Server Version : 110803 (11.8.3-MariaDB-ubu2404) File Encoding : 65001 - Date: 25/09/2025 18:31:01 + Date: 05/11/2025 20:20:36 */ SET NAMES utf8mb4; @@ -47,7 +47,9 @@ CREATE TABLE `items_base` ( `effect_id_male` int NOT NULL DEFAULT 0, `effect_id_female` int NOT NULL DEFAULT 0, `clothing_on_walk` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`) USING BTREE + PRIMARY KEY (`id`) USING BTREE, + INDEX `item_name_idx`(`item_name` ASC) USING BTREE, + INDEX `sprite_id_idx`(`sprite_id` ASC) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 537244 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_uca1400_ai_ci ROW_FORMAT = DYNAMIC; -- ----------------------------