wp_fct_tax_rates
LiveStores fct tax rates data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_fct_tax_rates` (\n `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n `class_id` bigint unsigned NOT NULL,\n `country` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `state` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `postcode` text COLLATE utf8mb4_unicode_520_ci,\n `city` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `rate` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `name` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `group` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `priority` int unsigned DEFAULT '1',\n `is_compound` tinyint unsigned DEFAULT '0',\n `for_shipping` tinyint unsigned DEFAULT NULL,\n `for_order` tinyint unsigned DEFAULT '0',\n PRIMARY KEY (`id`),\n KEY `wp_fct_txr__txr_class_idx` (`class_id`),\n KEY `wp_fct_txr__priority_idx` (`priority`)\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_tax_rates`;
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