wp_ahc_daily_visitors_stats

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑idINT(11) UNSIGNEDNO
vst_dateDATETIMENO
vst_visitorsINT(11) UNSIGNEDYES
vst_visitsINT(11) UNSIGNEDYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `ahc_daily_visitors_stats` ( `id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`), `vst_date` DATETIME NOT NULL, `vst_visitors` INT(11) UNSIGNED NULL DEFAULT 0, `vst_visits` INT(11) UNSIGNED 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_daily_visitors_stats`;

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

Other tables from Visitor Traffic Real Time Statistics