wp_poptics_analytics

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
campaign_idbigint(20) UNSIGNEDYES
datedateYES
viewsint(11)YES
visitorsint(11)YES
conversionsint(11)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_poptics_analytics` ( `id` int(11) NOT NULL AUTO_INCREMENT, `campaign_id` bigint(20) UNSIGNED DEFAULT NULL, `date` date DEFAULT NULL, `views` int(11) DEFAULT 0, `visitors` int(11) DEFAULT 0, `conversions` int(11) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE

Safe to delete?

If you have uninstalled Poptics – Popup Builder, Email Opt-ins, Exit-Intent & WooCommerce Popups Sales, 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_poptics_analytics`;

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

Other tables from Poptics – Popup Builder, Email Opt-ins, Exit-Intent & WooCommerce Popups Sales