wp_ahc_title_traffic

Static

Stores ahc title traffic data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑til_idINT(11) UNSIGNEDNO
til_page_idVARCHAR(30)NO
til_page_titleVARCHAR(100)YES
til_hitsINT(11) UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `ahc_title_traffic` ( `til_id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY (`til_id`), `til_page_id` VARCHAR(30) NOT NULL, `til_page_title` VARCHAR(100), `til_hits` INT(11) UNSIGNED NOT NULL ) DEFAULT CHARSET

Safe to delete?

If you have uninstalled Visitor Traffic Real Time Statistics, 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_ahc_title_traffic`;

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

Other tables from Visitor Traffic Real Time Statistics