wp_poptics_submissions

Static

Stores form submissions and user-entered data.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
campaign_idbigint(20)YES
emailvarchar(150)YES
browservarchar(150)YES
devicevarchar(150)YES
locationvarchar(150)YES
statusvarchar(150)YES
datetimestampYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_poptics_submissions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `campaign_id` bigint(20) DEFAULT NULL, `email` varchar(150) DEFAULT NULL, `browser` varchar(150) DEFAULT NULL, `device` varchar(150) DEFAULT NULL, `location` varchar(150) DEFAULT NULL, `status` varchar(150) DEFAULT 'active', `date` timestamp NULL DEFAULT current_timestamp(), 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_submissions`;

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