wp_ahc_countries

Static

Stores ahc countries data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑ctr_idINT(5) UNSIGNEDNO
ctr_nameVARCHAR(100)NO
ctr_internet_codeVARCHAR(5)NO
ctr_latitudeVARCHAR(30)YES
ctr_longitudeVARCHAR(30)YES
ctr_visitorsINT(11)NO
ctr_visitsINT(11)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `ahc_countries` ( `ctr_id` INT(5) UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY(`ctr_id`), `ctr_name` VARCHAR(100) NOT NULL, `ctr_internet_code` VARCHAR(5) NOT NULL, `ctr_latitude` VARCHAR(30) NULL, `ctr_longitude` VARCHAR(30) NULL, `ctr_visitors` INT(11) NOT NULL DEFAULT 0, `ctr_visits` INT(11) 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_countries`;

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

Other tables from Visitor Traffic Real Time Statistics