a:4:{s:4:"hash";s:0:"";s:5:"mtime";i:1763060677;s:6:"expire";i:9999999999;s:4:"tags";s:40:"efd_DB_PDO_MYSQL_DDL,efd_DB_DDL,efd_MAGE";}
"CREATE TABLE `wishlist_item` (\n  `wishlist_item_id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist item ID',\n  `wishlist_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Wishlist ID',\n  `product_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Product ID',\n  `store_id` smallint unsigned DEFAULT NULL COMMENT 'Store ID',\n  `added_at` timestamp NULL DEFAULT NULL COMMENT 'Add date and time',\n  `description` text COMMENT 'Short description of wish list item',\n  `qty` decimal(12,4) NOT NULL COMMENT 'Qty',\n  PRIMARY KEY (`wishlist_item_id`),\n  KEY `WISHLIST_ITEM_WISHLIST_ID` (`wishlist_id`),\n  KEY `WISHLIST_ITEM_PRODUCT_ID` (`product_id`),\n  KEY `WISHLIST_ITEM_STORE_ID` (`store_id`),\n  CONSTRAINT `WISHLIST_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,\n  CONSTRAINT `WISHLIST_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL,\n  CONSTRAINT `WISHLIST_ITEM_WISHLIST_ID_WISHLIST_WISHLIST_ID` FOREIGN KEY (`wishlist_id`) REFERENCES `wishlist` (`wishlist_id`) ON DELETE CASCADE\n) ENGINE=InnoDB AUTO_INCREMENT=125 DEFAULT CHARSET=utf8mb3 COMMENT='Wishlist items'"