wp_blueravenconfig

Static

Stores blueravenconfig data created by this plugin.

Column Definitions

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

CREATE TABLE Statement

CREATE TABLE wp_BlueRavenConfig ( id BIGINT(20) NOT NULL AUTO_INCREMENT, setting VARCHAR(255) NOT NULL, value LONGTEXT NOT NULL, 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($brConfig);

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

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

Other tables from Blue Raven