wp_ahc_countries
StaticStores ahc countries data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ctr_id | INT(5) UNSIGNED | NO |
| ctr_name | VARCHAR(100) | NO |
| ctr_internet_code | VARCHAR(5) | NO |
| ctr_latitude | VARCHAR(30) | YES |
| ctr_longitude | VARCHAR(30) | YES |
| ctr_visitors | INT(11) | NO |
| ctr_visits | INT(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