wp_daily_aggregates

Static

Stores daily aggregates data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑dateTEXTYES
sessionsINTEGERYES
new_visitorsINTEGERYES
returning_visitorsINTEGERYES
pageviewsINTEGERYES
bouncesINTEGERYES
total_durationINTEGERYES
total_scroll_depthINTEGERYES
conversionsINTEGERYES
source_directINTEGERYES
source_organicINTEGERYES
source_socialINTEGERYES
source_referralINTEGERYES
source_aiINTEGERYES
device_mobileINTEGERYES
device_tabletINTEGERYES
device_laptopINTEGERYES
device_desktopINTEGERYES
created_atTEXTNO
updated_atTEXTNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS daily_aggregates ( date TEXT PRIMARY KEY, sessions INTEGER DEFAULT 0, unique_visitors INTEGER DEFAULT 0, new_visitors INTEGER DEFAULT 0, returning_visitors INTEGER DEFAULT 0, pageviews INTEGER DEFAULT 0, bounces INTEGER DEFAULT 0, total_duration INTEGER DEFAULT 0, total_scroll_depth INTEGER DEFAULT 0, conversions INTEGER DEFAULT 0, source_direct INTEGER DEFAULT 0, source_organic INTEGER DEFAULT 0, source_social INTEGER DEFAULT 0, source_referral INTEGER DEFAULT 0, source_ai INTEGER DEFAULT 0, device_mobile INTEGER DEFAULT 0, device_tablet INTEGER DEFAULT 0, device_laptop INTEGER DEFAULT 0, device_desktop INTEGER DEFAULT 0, created_at TEXT NOT NULL, updated_at TEXT NOT NULL )");

Safe to delete?

If you have uninstalled Kantan 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_daily_aggregates`;

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

Other tables from Kantan Analytics