wp_fct_scheduled_actions

Live

Stores fct scheduled actions data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_fct_scheduled_actions` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `scheduled_at` datetime DEFAULT NULL,\n  `action` varchar(192) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `group` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `object_id` bigint unsigned DEFAULT NULL,\n  `object_type` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `completed_at` timestamp NULL DEFAULT NULL,\n  `retry_count` int unsigned DEFAULT '0',\n  `data` json DEFAULT NULL,\n  `created_at` datetime DEFAULT NULL,\n  `updated_at` datetime DEFAULT NULL,\n  `response_note` longtext COLLATE utf8mb4_unicode_520_ci,\n  PRIMARY KEY (`id`),\n  KEY `wp_fct_sch_var__scheduled_at_idx` (`scheduled_at`),\n  KEY `wp_fct_sch_var__status_idx` (`status`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, 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_fct_scheduled_actions`;

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

Other tables from FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler