wp_garantiwebt_generation_log

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20)NO
post_idBIGINT(20)YES
languageVARCHAR(10)YES
providerVARCHAR(50)YES
modelVARCHAR(100)YES
word_countINT(11)YES
seo_scoreINT(3)YES
statusVARCHAR(20)YES
error_msgTEXTYES
created_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_garantiwebt_generation_log ( id BIGINT(20) NOT NULL AUTO_INCREMENT, post_id BIGINT(20) DEFAULT NULL, keyword VARCHAR(500) NOT NULL, language VARCHAR(10) DEFAULT 'en', provider VARCHAR(50) DEFAULT 'claude', model VARCHAR(100) DEFAULT NULL, word_count INT(11) DEFAULT 0, seo_score INT(3) DEFAULT 0, status VARCHAR(20) DEFAULT 'completed', error_msg TEXT DEFAULT NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY created_at (created_at) ) $c;" );

Safe to delete?

If you have uninstalled Garantiwebt AI – AI Content Generator (Claude, OpenAI & Gemini), 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_garantiwebt_generation_log`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.