wp_aicog_log

Verified

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

CREATE TABLE Statement

CREATE TABLE `wp_aicog_log` (\n  `id` mediumint NOT NULL AUTO_INCREMENT,\n  `comment_id` bigint NOT NULL DEFAULT '0',\n  `comment_content` text COLLATE utf8mb4_unicode_520_ci,\n  `comment_author` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `comment_author_ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `comment_hash` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `ai_provider` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `ai_response` text COLLATE utf8mb4_unicode_520_ci,\n  `action` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `confidence` float DEFAULT NULL,\n  `processing_time` float DEFAULT NULL,\n  `error_message` text COLLATE utf8mb4_unicode_520_ci,\n  `created_at` datetime DEFAULT CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`),\n  KEY `comment_id` (`comment_id`),\n  KEY `comment_hash` (`comment_hash`),\n  KEY `action` (`action`),\n  KEY `created_at` (`created_at`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled AI Comment 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_aicog_log`;

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