wp_confgu_error_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| error_type | VARCHAR(50) | NO |
| plugin | VARCHAR(255) | NO |
| message | TEXT | NO |
| file | VARCHAR(500) | NO |
| line | INT UNSIGNED | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE statement passed in its own dbDelta() call (passing several * statements in one string is unreliable — typically only the last table is * created/updated correctly). */ $sql_error_log = "CREATE TABLE wp_confgu_error_log ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, error_type VARCHAR(50) NOT NULL DEFAULT '', plugin VARCHAR(255) NOT NULL DEFAULT '', message TEXT NOT NULL, file VARCHAR(500) NOT NULL DEFAULT '', line INT UNSIGNED NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY plugin (plugin(191)), KEY error_type (error_type), KEY created_at (created_at) ) $charset;"; dbDelta( $sql_error_log );
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_error_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Conflict Guard