wp_em_theme_metas
StaticStores additional metadata (key-value pairs) for em theme metas records.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) unsigned | NO |
| theme_id | mediumint(9) unsigned | NO |
| overlay | longtext | YES |
| container | longtext | YES |
| close | longtext | YES |
| title | longtext | YES |
| content | longtext | YES |
CREATE TABLE Statement
CREATE TABLE wp_em_theme_metas ( id mediumint(9) unsigned NOT NULL AUTO_INCREMENT, theme_id mediumint(9) unsigned NOT NULL, overlay longtext, container longtext, close longtext, title longtext, content 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_theme_metas`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Easy Modal