wp_fct_coupons

Live

Stores fct coupons data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_fct_coupons` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `title` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `code` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `priority` int DEFAULT NULL,\n  `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `conditions` json DEFAULT NULL,\n  `amount` double NOT NULL,\n  `use_count` int DEFAULT '0',\n  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `notes` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `stackable` varchar(3) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'no',\n  `show_on_checkout` varchar(3) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',\n  `start_date` timestamp NULL DEFAULT NULL,\n  `end_date` timestamp NULL DEFAULT NULL,\n  `created_at` datetime DEFAULT NULL,\n  `updated_at` datetime DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `code` (`code`),\n  KEY `wp_fct_cpn__code_idx` (`code`),\n  KEY `wp_fct_cpn__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_coupons`;

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