wp_checkout_remove
VerifiedStores checkout remove data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_checkout_remove` (\n `id` int NOT NULL AUTO_INCREMENT,\n `fName` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `lName` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `company` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `addr1` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `addr2` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `city` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `zipcode` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `country` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `state` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `phone` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `email` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `notes` varchar(1) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n UNIQUE KEY `id` (`id`)\n) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled Remove Checkout Fields, 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_checkout_remove`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.