wp_garantiwebt_generation_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) | NO |
| post_id | BIGINT(20) | YES |
| language | VARCHAR(10) | YES |
| provider | VARCHAR(50) | YES |
| model | VARCHAR(100) | YES |
| word_count | INT(11) | YES |
| seo_score | INT(3) | YES |
| status | VARCHAR(20) | YES |
| error_msg | TEXT | YES |
| created_at | DATETIME | YES |
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.