wp_acato_email_essentials_history
StaticStores acato email essentials history data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int(11) unsigned | NO |
| sender | varchar(256) | NO |
| ip | varchar(128) | NO |
| recipient | varchar(256) | NO |
| subject | varchar(256) | NO |
| headers | text | NO |
| body | text | NO |
| alt_body | text | NO |
| eml | LONGTEXT | NO |
| thedatetime | datetime | NO |
| status | int(11) | NO |
| errinfo | text | NO |
| debug | text | NO |
CREATE TABLE Statement
CREATE TABLE `wp_acato_email_essentials_history` ( `ID` int(11) unsigned NOT NULL AUTO_INCREMENT, `sender` varchar(256) NOT NULL DEFAULT '', `ip` varchar(128) NOT NULL DEFAULT '', `recipient` varchar(256) NOT NULL DEFAULT '', `subject` varchar(256) NOT NULL DEFAULT '', `headers` text NOT NULL, `body` text NOT NULL, `alt_body` text NOT NULL, `eml` LONGTEXT NOT NULL, `thedatetime` datetime NOT NULL, `status` int(11) NOT NULL, `errinfo` text NOT NULL, `debug` text NOT NULL, PRIMARY KEY (`ID`), KEY `sender` (`sender`(255)), KEY `recipient` (`recipient`(255)), KEY `subject` (`subject`(255)), KEY `thedatetime` (`thedatetime`), KEY `status` (`status`) ) DEFAULT CHARSET
Safe to delete?
If you have uninstalled Email Essentials, 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_acato_email_essentials_history`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Email Essentials