wp_poptics_submissions
StaticStores form submissions and user-entered data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| campaign_id | bigint(20) | YES |
| varchar(150) | YES | |
| browser | varchar(150) | YES |
| device | varchar(150) | YES |
| location | varchar(150) | YES |
| status | varchar(150) | YES |
| date | timestamp | YES |
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