{"table_name":"confgu_error_log","full_table_name":"wp_confgu_error_log","description":"A logging table that records activity, events, or audit history.","detection_method":"static","confidence":"medium","create_sql":"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 );","columns":[{"name":"error_type","type":"VARCHAR(50)","nullable":false,"primary_key":false},{"name":"plugin","type":"VARCHAR(255)","nullable":false,"primary_key":false},{"name":"message","type":"TEXT","nullable":false,"primary_key":false},{"name":"file","type":"VARCHAR(500)","nullable":false,"primary_key":false},{"name":"line","type":"INT UNSIGNED","nullable":false,"primary_key":false},{"name":"created_at","type":"DATETIME","nullable":false,"primary_key":false}],"plugin":{"slug":"conflict-guard","name":"Conflict Guard","active_installs":0,"version":"1.0.9","wp_org_url":"https://wordpress.org/plugins/conflict-guard/"}}