wp_em_themes

Static

Stores em themes data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idmediumint(9) unsignedNO
namevarchar(150)NO
createddatetimeNO
modifieddatetimeNO
is_systemtinyint(1)NO
is_trashtinyint(1)NO

CREATE TABLE Statement

CREATE TABLE wp_em_themes ( id mediumint(9) unsigned NOT NULL AUTO_INCREMENT, name varchar(150) NOT NULL DEFAULT '', created datetime NOT NULL DEFAULT '0000-00-00 00:00:00', modified datetime NOT NULL DEFAULT '0000-00-00 00:00:00', 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_themes`;

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

Other tables from Easy Modal