wp_cdp_companies
StaticStores cdp companies data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_cdp_companies` (\n `id` bigint NOT NULL AUTO_INCREMENT,\n `blog_id` int NOT NULL,\n `company_id` int NOT NULL,\n `dealer_id` int NOT NULL,\n `name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `street` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `city` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `state` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `zip` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `phone` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `country_code` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `apikeys` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `automalls` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `created` date NOT NULL,\n `last_updated` datetime NOT NULL,\n `inventory_last_updated` datetime NOT NULL,\n `inventory_api_last_modified` datetime NOT NULL,\n `inventory_last_checked` datetime NOT NULL,\n `inventory_last_checked_response` datetime NOT NULL,\n `seo` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled CarDealerPress, 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_cdp_companies`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from CarDealerPress