wp_confgu_conflict_timeline
StaticStores confgu conflict timeline data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| event_type | VARCHAR(50) | NO |
| plugin | VARCHAR(255) | NO |
| description | TEXT | NO |
| severity | VARCHAR(20) | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_confgu_conflict_timeline ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, event_type VARCHAR(50) NOT NULL DEFAULT '', plugin VARCHAR(255) NOT NULL DEFAULT '', description TEXT NOT NULL, severity VARCHAR(20) NOT NULL DEFAULT 'info', created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY event_type (event_type), KEY created_at (created_at) ) $charset;"; dbDelta( $sql_timeline );
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_conflict_timeline`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Conflict Guard