wp_koko_analytics_post_stats

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
dateDATENO
path_idINT UNSIGNEDNO
post_idINT UNSIGNEDNO
visitorsINT UNSIGNEDNO
pageviewsINT UNSIGNEDNO

CREATE TABLE Statement

CREATE TABLE wp_koko_analytics_post_stats ( date DATE NOT NULL, path_id INT UNSIGNED NOT NULL, post_id INT UNSIGNED NOT NULL DEFAULT 0, visitors INT UNSIGNED NOT NULL DEFAULT 0, pageviews INT UNSIGNED NOT NULL DEFAULT 0, PRIMARY KEY (date, path_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_post_stats`;

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

Other tables from Koko Analytics – Privacy-Friendly WordPress Analytics