wp_aidf_crawler_log

Static

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

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
bot_namevarchar(50)NO
bot_uavarchar(500)NO
url_pathvarchar(500)NO
status_codesmallint(5) unsignedNO
created_atdatetimeNO
bot_namevarchar(50)NO
log_datedateNO
hit_countint(10) unsignedNO
top_pagevarchar(500)NO
status_200int(10) unsignedNO
status_403int(10) unsignedNO
status_otherint(10) unsignedNO

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