wp_confgu_restore_points
StaticStores confgu restore points data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| plugin | VARCHAR(255) | NO |
| version | VARCHAR(50) | NO |
| snapshot | LONGTEXT | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_confgu_restore_points ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, plugin VARCHAR(255) NOT NULL DEFAULT '', version VARCHAR(50) NOT NULL DEFAULT '', snapshot LONGTEXT NOT NULL, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY plugin (plugin(191)) ) $charset;"; dbDelta( $sql_restore_points );
Safe to delete?
If you have uninstalled Conflict Guard, 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_confgu_restore_points`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Conflict Guard