wp_to_html_queue

Static

A job queue table for managing background tasks and scheduled operations.

CREATE TABLE Statement

CREATE TABLE `wp_wp_to_html_queue` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pending',\n  `retry_count` int NOT NULL DEFAULT '0',\n  `last_error` longtext COLLATE utf8mb4_unicode_520_ci,\n  `last_attempt_at` datetime DEFAULT NULL,\n  `next_attempt_at` datetime DEFAULT NULL,\n  `started_at` datetime DEFAULT NULL,\n  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`),\n  KEY `status` (`status`),\n  KEY `next_attempt_at` (`next_attempt_at`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Export WordPress Pages to Static HTML & PDF — Static Site Export, this table is generally safe to remove. However, always back up your database first.

Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.

How to remove this table

DROP TABLE IF EXISTS `wp_to_html_queue`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Export WordPress Pages to Static HTML & PDF — Static Site Export