wp_fct_order_transactions

Live

Stores order records and related transaction data.

CREATE TABLE Statement

CREATE TABLE `wp_fct_order_transactions` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `order_id` bigint unsigned NOT NULL DEFAULT '0',\n  `order_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `transaction_type` varchar(192) COLLATE utf8mb4_unicode_520_ci DEFAULT 'charge',\n  `subscription_id` int DEFAULT NULL,\n  `card_last_4` int DEFAULT NULL,\n  `card_brand` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `vendor_charge_id` varchar(192) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `payment_method` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `payment_mode` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `payment_method_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `currency` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `total` bigint NOT NULL DEFAULT '0',\n  `rate` bigint NOT NULL DEFAULT '1',\n  `uuid` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',\n  `meta` json DEFAULT NULL,\n  `created_at` datetime DEFAULT NULL,\n  `updated_at` datetime DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `wp_fct_ot__ven_charge_id` (`vendor_charge_id`(64)),\n  KEY `wp_fct_ot__payment_method_idx` (`payment_method`),\n  KEY `wp_fct_ot__status_idx` (`status`),\n  KEY `wp_fct_ot__order_id_idx` (`order_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_transactions`;

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