wp_dxp_active_blocks

Static

Stores dxp active blocks data created by this plugin.

Column Definitions

ColumnTypeNullable
idbigint(20) unsignedNO
rule_idbigint(20) unsignedNO
post_idbigint(20) unsignedNO
namevarchar(255)NO

CREATE TABLE Statement

CREATE TABLE wp_dxp_active_blocks ( `id` bigint(20) unsigned NOT NULL default 0, `rule_id` bigint(20) unsigned NOT NULL default 0, `post_id` bigint(20) unsigned NOT NULL default 0, `name` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`, `rule_id`, `post_id`), KEY rule_id (`rule_id`), KEY post_id (`post_id`) ) {$collate}; "; $this->maybe_create_table( $table_name, $sql );

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_active_blocks`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from WP-DXP