wp_ahc_searching_visits

Static

Stores ahc searching visits data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑vtsh_idINT(11) UNSIGNEDNO
srh_idINT(3) UNSIGNEDNO
vtsh_dateDATENO
vtsh_visitsINT(11) UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `ahc_searching_visits` ( `vtsh_id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY (`vtsh_id`), `srh_id` INT(3) UNSIGNED NOT NULL, `vtsh_date` DATE NOT NULL, `vtsh_visits` INT(11) UNSIGNED NOT NULL DEFAULT 0 ) 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_searching_visits`;

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

Other tables from Visitor Traffic Real Time Statistics