wp_dxp_active_blocks
StaticStores dxp active blocks data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| id | bigint(20) unsigned | NO |
| rule_id | bigint(20) unsigned | NO |
| post_id | bigint(20) unsigned | NO |
| name | varchar(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