wp_actionscheduler_actions

Static

Stores actionscheduler actions data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_actionscheduler_actions` (\n  `action_id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `hook` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',\n  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',\n  `priority` tinyint unsigned NOT NULL DEFAULT '10',\n  `args` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `schedule` longtext COLLATE utf8mb4_unicode_520_ci,\n  `group_id` bigint unsigned NOT NULL DEFAULT '0',\n  `attempts` int NOT NULL DEFAULT '0',\n  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',\n  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',\n  `claim_id` bigint unsigned NOT NULL DEFAULT '0',\n  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  PRIMARY KEY (`action_id`),\n  KEY `hook_status_scheduled_date_gmt` (`hook`(163),`status`,`scheduled_date_gmt`),\n  KEY `status_scheduled_date_gmt` (`status`,`scheduled_date_gmt`),\n  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),\n  KEY `args` (`args`),\n  KEY `group_id` (`group_id`),\n  KEY `last_attempt_gmt` (`last_attempt_gmt`),\n  KEY `claim_id_status_priority_scheduled_date_gmt` (`claim_id`,`status`,`priority`,`scheduled_date_gmt`),\n  KEY `status_last_attempt_gmt` (`status`,`last_attempt_gmt`),\n  KEY `status_claim_id` (`status`,`claim_id`)\n) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Rank Math SEO – AI SEO Tools to Dominate SEO Rankings, 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_actionscheduler_actions`;

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

Other tables from Rank Math SEO – AI SEO Tools to Dominate SEO Rankings