wp_poptics_analytics
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| campaign_id | bigint(20) UNSIGNED | YES |
| date | date | YES |
| views | int(11) | YES |
| visitors | int(11) | YES |
| conversions | int(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