Update catalog_items seed values

Refresh SQL seed data: update file timestamp and mass-edit catalog_items INSERTs to normalize numeric fields. Many item base IDs were replaced with 9965890, various rarity/status fields were standardized to 99 or 999 (replacing legacy negative or other codes), and a few item rows had minor field/text adjustments (e.g. Chess). These changes standardize the catalog seed data for the new dump/version.
This commit is contained in:
Remco Epicnabbo
2026-06-11 15:41:15 +02:00
parent 1544865197
commit 1e4183aa67
3 changed files with 3188 additions and 3187 deletions
File diff suppressed because it is too large Load Diff
+4 -3
View File
@@ -11,7 +11,7 @@
Target Server Version : 110808 (11.8.8-MariaDB-ubu2604)
File Encoding : 65001
Date: 09/06/2026 18:08:39
Date: 11/06/2026 15:40:31
*/
SET NAMES utf8mb4;
@@ -47,7 +47,7 @@ CREATE TABLE `catalog_pages` (
`catalog_mode` enum('NORMAL','BUILDER','BOTH') CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT 'NORMAL',
PRIMARY KEY (`id`) USING BTREE,
INDEX `id`(`id`) USING BTREE
) ENGINE = MyISAM AUTO_INCREMENT = 9965890 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;
) ENGINE = MyISAM AUTO_INCREMENT = 9965891 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of catalog_pages
@@ -460,7 +460,7 @@ INSERT INTO `catalog_pages` VALUES (505, 503, 'Jet Set - 2016', 'Jet Set - 2016'
INSERT INTO `catalog_pages` VALUES (506, 209, 'Verhalen', 'Verhalen', 'default_3x3', 1, 210, 1, 20, '0', '0', '0', '0', '', '', '', '', '', '', '', 0, '', 'NORMAL');
INSERT INTO `catalog_pages` VALUES (507, 209, 'Shakespeare', 'Shakespeare', 'default_3x3', 1, 210, 1, 20, '1', '1', '0', '0', '', '', '', '', '', '', '', 0, '', 'NORMAL');
INSERT INTO `catalog_pages` VALUES (434, 209, 'Zen-tuin', 'Zen-tuin', 'default_3x3', 1, 2, 1, 26, '0', '0', '0', '0', 'catalog_frontpage_headline_shop_EN', 'sep18_classic14_internal', '', 'It\'s time to dive into a metaphorical pool of psychological solitude.', '', '', '', 0, '', 'NORMAL');
INSERT INTO `catalog_pages` VALUES (257, 269, '', '', 'default_3x3', 1, 227, 1, 2, '0', '0', '0', '0', 'catalog_teaser_palooza', 'catalog_teaser_palooza', '', 'Create your own stage and outdoor festival area. We\'ve got stages, fencing and even vending machines!', '', '', '', 0, '', 'NORMAL');
INSERT INTO `catalog_pages` VALUES (257, 269, 'lege_pagina_257', 'Lege Pagina #257', 'default_3x3', 1, 227, 1, 2, '0', '0', '0', '0', 'catalog_teaser_palooza', 'catalog_teaser_palooza', '', 'Create your own stage and outdoor festival area. We\'ve got stages, fencing and even vending machines!', '', '', '', 0, '', 'NORMAL');
INSERT INTO `catalog_pages` VALUES (435, 209, 'Zonstad', 'Zonstad', 'default_3x3', 1, 2, 1, 20, '1', '1', '0', '0', 'catalog_frontpage_headline_shop_EN', 'suncity19_newfurni', '', 'Build the utopian paradise of your dreams with our new furni line: Sunlight City!', '', '', '', 0, '', 'NORMAL');
INSERT INTO `catalog_pages` VALUES (508, 209, 'Vintage muziek', 'Vintage muziek', 'default_3x3', 1, 210, 1, 23, '1', '1', '0', '0', '', '', '', '', '', '', '', 0, '', 'NORMAL');
INSERT INTO `catalog_pages` VALUES (509, 209, 'Kostschool', 'Kostschool', 'default_3x3', 1, 210, 1, 2, '1', '1', '0', '0', '', '', '', '', '', '', '', 0, '', 'NORMAL');
@@ -1494,5 +1494,6 @@ INSERT INTO `catalog_pages` VALUES (9965887, 9965880, 'Ariana grande', 'Ariana g
INSERT INTO `catalog_pages` VALUES (9965888, 49, 'Voetbal 2026', 'Voetbal 2026', 'default_3x3', 1, 1, 1, 1, '1', '1', '0', '0', '', '', '', NULL, NULL, NULL, NULL, 0, '', 'NORMAL');
INSERT INTO `catalog_pages` VALUES (9965889, 1072, 'NFT Mei 2026', 'NFT Mei 2026', 'default_3x3', 1, 1, 1, 1, '1', '1', '0', '0', '', '', '', NULL, NULL, NULL, NULL, 0, '', 'NORMAL');
INSERT INTO `catalog_pages` VALUES (216, 209, 'Grieks', 'Grieks', 'default_3x3', 1, 31, 1, 99, '1', '1', '0', '0', 'greek_header', 'greek_catateaser', '', 'Be transported back to ancient Greece with a couple of thousand pounds and British Airways. Until then, build your own pantheon with our realistic Greek range!', '', '', '', 0, '', 'NORMAL');
INSERT INTO `catalog_pages` VALUES (9965890, 2, 'Overige', 'Overige', 'default_3x3', 1, 1, 1, 999, '0', '0', '0', '0', '', '', '', NULL, NULL, NULL, NULL, 0, '', 'NORMAL');
SET FOREIGN_KEY_CHECKS = 1;
File diff suppressed because it is too large Load Diff