wp_post_scheduler

Verified

Stores post scheduler data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_post_scheduler` (\n  `id` mediumint NOT NULL AUTO_INCREMENT,\n  `post_id` bigint NOT NULL,\n  `scheduled_time` datetime NOT NULL,\n  `interval_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `interval_value` int DEFAULT NULL,\n  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT 'pending',\n  `created_at` datetime DEFAULT CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`),\n  KEY `post_id` (`post_id`),\n  KEY `scheduled_time` (`scheduled_time`),\n  KEY `status` (`status`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Simple Auto Post Scheduler, 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_post_scheduler`;

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