wp_dxp_rules
StaticStores dxp rules data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| name | varchar(255) | NO |
| category_id | int(11) | NO |
| type | varchar(30) | NO |
| conditions_json | mediumtext | NO |
| created_by | bigint(20) | NO |
| created_at | datetime | NO |
| modified_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE `wp_wp_dxp_rules` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '', `category_id` int(11) NOT NULL, `type` varchar(30) NOT NULL, `conditions_json` mediumtext NOT NULL, `created_by` bigint(20) NOT NULL, `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_rules`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-DXP