🚀 Add missing indexes now it wil load everyting like an rakket 🚀

This commit is contained in:
Remco
2025-12-09 18:11:03 +01:00
parent 80fbccada0
commit 35f24341d1
+4 -2
View File
@@ -11,7 +11,7 @@
Target Server Version : 110805 (11.8.5-MariaDB-ubu2404) Target Server Version : 110805 (11.8.5-MariaDB-ubu2404)
File Encoding : 65001 File Encoding : 65001
Date: 09/12/2025 18:08:00 Date: 09/12/2025 18:10:25
*/ */
SET NAMES utf8mb4; SET NAMES utf8mb4;
@@ -45,7 +45,9 @@ CREATE TABLE `catalog_pages` (
`room_id` int NULL DEFAULT 0, `room_id` int NULL DEFAULT 0,
`includes` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NOT NULL DEFAULT '' COMMENT 'Example usage: 1;2;3\r\n This will include page 1, 2 and 3 in the current page.\r\n Note that permissions are only used for the current entry.', `includes` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_uca1400_ai_ci NOT NULL DEFAULT '' COMMENT 'Example usage: 1;2;3\r\n This will include page 1, 2 and 3 in the current page.\r\n Note that permissions are only used for the current entry.',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
INDEX `id`(`id` ASC) USING BTREE INDEX `id`(`id` ASC) USING BTREE,
INDEX `idx_parent_order`(`parent_id` ASC, `order_num` ASC) USING BTREE,
INDEX `idx_rank_access`(`min_rank` ASC, `visible` ASC) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2200 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_uca1400_ai_ci ROW_FORMAT = DYNAMIC; ) ENGINE = InnoDB AUTO_INCREMENT = 2200 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_uca1400_ai_ci ROW_FORMAT = DYNAMIC;
-- ---------------------------- -- ----------------------------