wp_ahc_online_users

Static

Stores ahc online users data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(11) UNSIGNEDNO
hit_ip_addressVARCHAR(50)NO
hit_page_idVARCHAR(30)NO
datetimestampNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `ahc_online_users` ( `id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY(`id`), `hit_ip_address` VARCHAR(50) NOT NULL, `hit_page_id` VARCHAR(30) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) 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_online_users`;

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

Other tables from Visitor Traffic Real Time Statistics