wp_em_modals
StaticStores em modals data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) unsigned | NO |
| theme_id | mediumint(9) unsigned | NO |
| name | varchar(150) | NO |
| title | varchar(255) | YES |
| content | longtext | YES |
| created | datetime | NO |
| modified | datetime | NO |
| is_sitewide | tinyint(1) | NO |
| is_system | tinyint(1) | NO |
| is_trash | tinyint(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