wp_ai_traffic_log

Static

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

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
post_idbigint(20)NO
ai_servicevarchar(50)NO
access_typevarchar(20)NO
accessed_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE `wp_ai_traffic_log` ( id bigint(20) NOT NULL AUTO_INCREMENT, post_id bigint(20) NOT NULL, ai_service varchar(50) NOT NULL, access_type varchar(20) NOT NULL, accessed_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY post_id (post_id), KEY accessed_at (accessed_at) ) $charset;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );

Safe to delete?

If you have uninstalled Athenai-Wander AI Traffic Tracker, 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_ai_traffic_log`;

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