wp_koko_analytics_referrer_stats
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| date | DATE | NO |
| id | INT UNSIGNED | NO |
| visitors | INT UNSIGNED | NO |
| pageviews | INT UNSIGNED | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_koko_analytics_referrer_stats ( date DATE NOT NULL, id INT UNSIGNED NOT NULL, visitors INT UNSIGNED NOT NULL DEFAULT 0, pageviews INT UNSIGNED NOT NULL DEFAULT 0, PRIMARY KEY (date, id) ) ENGINE
Safe to delete?
If you have uninstalled Koko Analytics – Privacy-Friendly WordPress Analytics, 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_koko_analytics_referrer_stats`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Koko Analytics – Privacy-Friendly WordPress Analytics