wp_ahc_settings
StaticStores ahc settings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑set_id | int(10) unsigned | NO |
| set_hits_days | int(10) unsigned | NO |
| set_ajax_check | int(10) unsigned | NO |
| set_ips | text | YES |
| set_google_map | varchar(100) | NO |
| site_id | INT(11) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `ahc_settings` ( `set_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `set_hits_days` int(10) unsigned NOT NULL DEFAULT '14', `set_ajax_check` int(10) unsigned NOT NULL DEFAULT '10', `set_ips` text DEFAULT NULL, `set_google_map` varchar(100) NOT NULL DEFAULT 'today_visitors', `site_id` INT(11) NOT NULL DEFAULT '1', PRIMARY KEY (`set_id`) ) 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_settings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Visitor Traffic Real Time Statistics