wp_dxp_categories

Static

Stores dxp categories data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
namevarchar(255)NO
created_atdatetimeNO
modified_atdatetimeNO

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