wp_em_modals

Static

Stores em modals data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idmediumint(9) unsignedNO
theme_idmediumint(9) unsignedNO
namevarchar(150)NO
titlevarchar(255)YES
contentlongtextYES
createddatetimeNO
modifieddatetimeNO
is_sitewidetinyint(1)NO
is_systemtinyint(1)NO
is_trashtinyint(1)NO

CREATE TABLE Statement

CREATE TABLE wp_em_modals ( id mediumint(9) unsigned NOT NULL AUTO_INCREMENT, theme_id mediumint(9) unsigned NOT NULL DEFAULT '1', name varchar(150) NOT NULL DEFAULT '', title varchar(255) DEFAULT NULL, content longtext, created datetime NOT NULL DEFAULT '0000-00-00 00:00:00', modified datetime NOT NULL DEFAULT '0000-00-00 00:00:00', is_sitewide tinyint(1) NOT NULL DEFAULT '0', is_system tinyint(1) NOT NULL DEFAULT '0', is_trash tinyint(1) NOT NULL DEFAULT '0', 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_modals`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Easy Modal