wp_blueravenvalues

Static

Stores blueravenvalues data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20)NO
settingVARCHAR(255)NO
valueLONGTEXTNO
enabledTINYINT(1)NO
created_atDATETIMENO
updated_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_BlueRavenValues ( id BIGINT(20) NOT NULL AUTO_INCREMENT, setting VARCHAR(255) NOT NULL, value LONGTEXT NOT NULL, enabled TINYINT(1) NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY setting_key (setting) ) {$charset_collate}"; dbDelta($brValues);

Safe to delete?

If you have uninstalled Blue Raven, 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_blueravenvalues`;

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

Other tables from Blue Raven