wp_ahc_refering_sites
StaticStores ahc refering sites data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑rfr_id | INT(11) UNSIGNED | NO |
| rfr_site_name | VARCHAR(100) | NO |
| rfr_visits | INT(11) UNSIGNED | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `ahc_refering_sites` ( `rfr_id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY (`rfr_id`), `rfr_site_name` VARCHAR(100) NOT NULL, `rfr_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_refering_sites`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Visitor Traffic Real Time Statistics