wp_fct_product_variations

Live

Stores product records and related data.

CREATE TABLE Statement

CREATE TABLE `wp_fct_product_variations` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `post_id` bigint unsigned NOT NULL,\n  `media_id` bigint unsigned DEFAULT NULL,\n  `serial_index` int DEFAULT NULL,\n  `sold_individually` tinyint unsigned DEFAULT '0',\n  `variation_title` varchar(192) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `variation_identifier` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `sku` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `manage_stock` tinyint(1) DEFAULT '0',\n  `payment_type` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `stock_status` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT 'out-of-stock',\n  `backorders` tinyint unsigned DEFAULT '0',\n  `total_stock` int DEFAULT '0',\n  `on_hold` int DEFAULT '0',\n  `committed` int DEFAULT '0',\n  `available` int DEFAULT '0',\n  `fulfillment_type` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT 'physical',\n  `item_status` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT 'active',\n  `manage_cost` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT 'false',\n  `item_price` double NOT NULL DEFAULT '0',\n  `item_cost` double NOT NULL DEFAULT '0',\n  `compare_price` double DEFAULT '0',\n  `shipping_class` bigint DEFAULT NULL,\n  `other_info` longtext COLLATE utf8mb4_unicode_520_ci,\n  `downloadable` varchar(30) COLLATE utf8mb4_unicode_520_ci DEFAULT 'false',\n  `created_at` datetime DEFAULT NULL,\n  `updated_at` datetime DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `sku_unique` (`sku`),\n  KEY `wp_fct_pd_var__post_id_idx` (`post_id`),\n  KEY `wp_fct_pd_var__stock_status_idx` (`stock_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_product_variations`;

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