wp_ahc_visits_time
StaticStores ahc visits time data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑vtm_id | INT(11) UNSIGNED | NO |
| vtm_time_from | TIME | NO |
| vtm_time_to | TIME | NO |
| vtm_visitors | INT(11) UNSIGNED | NO |
| vtm_visits | INT(11) UNSIGNED | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `ahc_visits_time` ( `vtm_id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY (`vtm_id`), `vtm_time_from` TIME NOT NULL, `vtm_time_to` TIME NOT NULL, `vtm_visitors` INT(11) UNSIGNED NOT NULL DEFAULT 0, `vtm_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_visits_time`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Visitor Traffic Real Time Statistics