wp_poptics_analytics_meta

Static

Stores additional metadata (key-value pairs) for poptics analytics records.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
analytics_idint(11)YES
campaign_idbigint(20) UNSIGNEDYES
datedateYES
meta_keyvarchar(150)YES
meta_valuetextYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_poptics_analytics_meta` ( `id` int(11) NOT NULL AUTO_INCREMENT, `analytics_id` int(11) DEFAULT NULL, `campaign_id` bigint(20) UNSIGNED DEFAULT NULL, `date` date DEFAULT NULL, `meta_key` varchar(150) DEFAULT NULL, `meta_value` text DEFAULT NULL, PRIMARY KEY (`id`), KEY `FK_wp_poptics_analytics_with_meta` (`analytics_id`), KEY `campaign_id` (`campaign_id`), KEY `date` (`date`), KEY `meta_key` (`meta_key`) ) 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_meta`;

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