🆙 Fixed whole catalog structure to load faster more stable 🆙

This commit is contained in:
Remco
2025-11-05 20:22:58 +01:00
parent 569d451abb
commit 55a8d20471
2 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -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;
-- ----------------------------
+8 -6
View File
@@ -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;
-- ----------------------------