wp_blueravenvalues
StaticStores blueravenvalues data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) | NO |
| setting | VARCHAR(255) | NO |
| value | LONGTEXT | NO |
| enabled | TINYINT(1) | NO |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
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