wp_dxp_categories
StaticStores dxp categories data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| name | varchar(255) | NO |
| created_at | datetime | NO |
| modified_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE `wp_wp_dxp_categories` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `created_at` datetime NOT NULL, `modified_at` datetime NOT NULL, PRIMARY KEY (`id`) ) {$charset_collate};");Safe to delete?
If you have uninstalled WP-DXP, 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_dxp_categories`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-DXP