wp_fct_order_items
LiveStores order records and related transaction data.
CREATE TABLE Statement
CREATE TABLE `wp_fct_order_items` (\n `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n `order_id` bigint unsigned NOT NULL DEFAULT '0',\n `post_id` bigint unsigned NOT NULL DEFAULT '0',\n `fulfillment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'physical',\n `payment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'onetime',\n `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `object_id` bigint unsigned DEFAULT NULL,\n `cart_index` bigint unsigned NOT NULL DEFAULT '0',\n `quantity` int NOT NULL DEFAULT '1',\n `unit_price` bigint NOT NULL DEFAULT '0',\n `cost` bigint NOT NULL DEFAULT '0',\n `subtotal` bigint NOT NULL DEFAULT '0',\n `tax_amount` bigint NOT NULL DEFAULT '0',\n `shipping_charge` bigint NOT NULL DEFAULT '0',\n `discount_total` bigint NOT NULL DEFAULT '0',\n `line_total` bigint NOT NULL DEFAULT '0',\n `refund_total` bigint NOT NULL DEFAULT '0',\n `rate` bigint NOT NULL DEFAULT '1',\n `other_info` json DEFAULT NULL,\n `line_meta` json DEFAULT NULL,\n `fulfilled_quantity` int NOT NULL DEFAULT '0',\n `referrer` text COLLATE utf8mb4_unicode_520_ci,\n `created_at` datetime DEFAULT NULL,\n `updated_at` datetime DEFAULT NULL,\n PRIMARY KEY (`id`),\n KEY `wp_fct_oi__ord_id_var_id_idx` (`order_id`,`object_id`),\n KEY `wp_fct_oi__post_id_idx` (`post_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_order_items`;
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