wp_daextrebl_restriction
StaticStores daextrebl restriction data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑restriction_id | bigint(20) UNSIGNED | YES |
| name | text | NO |
| description | text | NO |
| type | tinyint(1) UNSIGNED | YES |
| mode | tinyint(1) UNSIGNED | YES |
| device | tinyint(1) UNSIGNED | YES |
| start_date | datetime | YES |
| end_date | datetime | YES |
| capabilities | text | NO |
| ip_address | text | NO |
| cookie_name | text | NO |
| cookie_value | text | NO |
| output_behavior | tinyint(1) UNSIGNED | YES |
| output_image | text | NO |
| output_title | text | NO |
| output_description | text | NO |
| output_button | text | NO |
| output_validation | text | NO |
| header_name | text | NO |
| header_value | text | NO |
| password | text | NO |
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.