wp_aidf_crawler_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| bot_name | varchar(50) | NO |
| bot_ua | varchar(500) | NO |
| url_path | varchar(500) | NO |
| status_code | smallint(5) unsigned | NO |
| created_at | datetime | NO |
| bot_name | varchar(50) | NO |
| log_date | date | NO |
| hit_count | int(10) unsigned | NO |
| top_page | varchar(500) | NO |
| status_200 | int(10) unsigned | NO |
| status_403 | int(10) unsigned | NO |
| status_other | int(10) unsigned | NO |
CREATE TABLE Statement
CREATE TABLE wp_aidf_crawler_log ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, bot_name varchar(50) NOT NULL, bot_ua varchar(500) NOT NULL DEFAULT '', url_path varchar(500) NOT NULL DEFAULT '', status_code smallint(5) unsigned NOT NULL DEFAULT 200, created_at datetime NOT NULL, PRIMARY KEY (id), KEY bot_date (bot_name, created_at), KEY date_idx (created_at) ) $charset_collate; CREATE TABLE wp_aidf_crawler_summary ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, bot_name varchar(50) NOT NULL, log_date date NOT NULL, hit_count int(10) unsigned NOT NULL DEFAULT 0, top_page varchar(500) NOT NULL DEFAULT '', status_200 int(10) unsigned NOT NULL DEFAULT 0, status_403 int(10) unsigned NOT NULL DEFAULT 0, status_other int(10) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (id), UNIQUE KEY bot_day (bot_name, log_date), KEY date_idx (log_date) ) $charset_collate;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );
Safe to delete?
If you have uninstalled AI Discovery Files – llms.txt & AI Visibility, 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_aidf_crawler_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AI Discovery Files – llms.txt & AI Visibility