wp_em_theme_metas

Static

Stores additional metadata (key-value pairs) for em theme metas records.

Column Definitions

ColumnTypeNullable
🔑idmediumint(9) unsignedNO
theme_idmediumint(9) unsignedNO
overlaylongtextYES
containerlongtextYES
closelongtextYES
titlelongtextYES
contentlongtextYES

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