wp_fct_activity

Live

Stores fct activity data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_fct_activity` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'info' COMMENT 'success / warning / failed / info',\n  `log_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'activity' COMMENT 'api',\n  `module_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'order' COMMENT 'Full Model Path',\n  `module_id` bigint DEFAULT NULL,\n  `module_name` varchar(192) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'order' COMMENT 'order / product / user / coupon / subscription / payment / refund / shipment / activity',\n  `user_id` bigint unsigned DEFAULT NULL,\n  `title` varchar(192) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `content` longtext COLLATE utf8mb4_unicode_520_ci,\n  `read_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'unread' COMMENT 'read / unread',\n  `created_by` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'FCT-BOT' COMMENT 'FCT-BOT / usename',\n  `created_at` datetime DEFAULT NULL,\n  `updated_at` datetime DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `wp_fct_act__module_id_idx` (`module_id`)\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_activity`;

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