wp_to_html_status

Static

Stores analytics or statistics data.

CREATE TABLE Statement

CREATE TABLE `wp_wp_to_html_status` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `state` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT 'idle',\n  `is_running` tinyint(1) DEFAULT '0',\n  `pipeline_stage` varchar(30) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'idle',\n  `stage_total` int DEFAULT '0',\n  `stage_done` int DEFAULT '0',\n  `failed_urls` int DEFAULT '0',\n  `failed_assets` int DEFAULT '0',\n  `total_urls` int DEFAULT '0',\n  `processed_urls` int DEFAULT '0',\n  `total_assets` int DEFAULT '0',\n  `processed_assets` int DEFAULT '0',\n  `last_progress_at` datetime DEFAULT NULL,\n  `last_progress_stage` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `last_progress_done` int DEFAULT '0',\n  `watchdog_runs` int DEFAULT '0',\n  `watchdog_repairs` int DEFAULT '0',\n  `updated_at` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=2 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_status`;

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