wp_em_modal_metas
StaticStores additional metadata (key-value pairs) for em modal metas records.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) unsigned | NO |
| modal_id | mediumint(9) unsigned | NO |
| display | longtext | YES |
| close | longtext | YES |
CREATE TABLE Statement
CREATE TABLE wp_em_modal_metas ( id mediumint(9) unsigned NOT NULL AUTO_INCREMENT, modal_id mediumint(9) unsigned NOT NULL, display longtext, close longtext, PRIMARY KEY (id) )$charset_collate;"; dbDelta( $sql );
Safe to delete?
If you have uninstalled Easy Modal, 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_em_modal_metas`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Easy Modal