From 35f24341d1e2b72fa2a57c12a5a60206e6115d48 Mon Sep 17 00:00:00 2001 From: Remco Date: Tue, 9 Dec 2025 18:11:03 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20=20Add=20missing=20indexes=20now?= =?UTF-8?q?=20it=20wil=20load=20everyting=20like=20an=20rakket=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sql files/Dutch/catalog_pages.sql | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Sql files/Dutch/catalog_pages.sql b/Sql files/Dutch/catalog_pages.sql index 972051ca3e..efef5086cb 100644 --- a/Sql files/Dutch/catalog_pages.sql +++ b/Sql files/Dutch/catalog_pages.sql @@ -11,7 +11,7 @@ Target Server Version : 110805 (11.8.5-MariaDB-ubu2404) File Encoding : 65001 - Date: 09/12/2025 18:08:00 + Date: 09/12/2025 18:10:25 */ SET NAMES utf8mb4; @@ -45,7 +45,9 @@ CREATE TABLE `catalog_pages` ( `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.', 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; -- ----------------------------