wp_dxp_rules

Static

Stores dxp rules data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
namevarchar(255)NO
category_idint(11)NO
typevarchar(30)NO
conditions_jsonmediumtextNO
created_bybigint(20)NO
created_atdatetimeNO
modified_atdatetimeNO

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