wp_confgu_conflict_timeline

Static

Stores confgu conflict timeline data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
event_typeVARCHAR(50)NO
pluginVARCHAR(255)NO
descriptionTEXTNO
severityVARCHAR(20)NO
created_atDATETIMENO

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