wp_daextrebl_restriction

Static

Stores daextrebl restriction data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑restriction_idbigint(20) UNSIGNEDYES
nametextNO
descriptiontextNO
typetinyint(1) UNSIGNEDYES
modetinyint(1) UNSIGNEDYES
devicetinyint(1) UNSIGNEDYES
start_datedatetimeYES
end_datedatetimeYES
capabilitiestextNO
ip_addresstextNO
cookie_nametextNO
cookie_valuetextNO
output_behaviortinyint(1) UNSIGNEDYES
output_imagetextNO
output_titletextNO
output_descriptiontextNO
output_buttontextNO
output_validationtextNO
header_nametextNO
header_valuetextNO
passwordtextNO

CREATE TABLE Statement

CREATE TABLE wp_daextrebl_restriction ( restriction_id bigint(20) UNSIGNED AUTO_INCREMENT PRIMARY KEY, name text NOT NULL DEFAULT '', description text NOT NULL DEFAULT '', type tinyint(1) UNSIGNED DEFAULT NULL, mode tinyint(1) UNSIGNED DEFAULT NULL, device tinyint(1) UNSIGNED DEFAULT NULL, start_date datetime DEFAULT NULL, end_date datetime DEFAULT NULL, capabilities text NOT NULL DEFAULT '', ip_address text NOT NULL DEFAULT '', cookie_name text NOT NULL DEFAULT '', cookie_value text NOT NULL DEFAULT '', output_behavior tinyint(1) UNSIGNED DEFAULT NULL, output_image text NOT NULL DEFAULT '', output_title text NOT NULL DEFAULT '', output_description text NOT NULL DEFAULT '', output_button text NOT NULL DEFAULT '', output_validation text NOT NULL DEFAULT '', header_name text NOT NULL DEFAULT '', header_value text NOT NULL DEFAULT '', password text NOT NULL DEFAULT '' ) $charset_collate"; dbDelta( $sql );

Safe to delete?

If you have uninstalled Restricted Blocks – Conditional Visibility Settings for the Block Editor, 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_daextrebl_restriction`;

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