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; -- ----------------------------