wp_poptics_submissions_meta
StaticStores additional metadata (key-value pairs) for poptics submissions records.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| submission_id | int(11) | YES |
| meta_key | varchar(150) | YES |
| meta_value | longtext | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_poptics_submissions_meta` ( `id` int(11) NOT NULL AUTO_INCREMENT, `submission_id` int(11) DEFAULT NULL, `meta_key` varchar(150) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`id`), KEY `FK_wp_poptics_submissions_with_meta` (`submission_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_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