wp_acato_email_essentials_queue
StaticA job queue table for managing background tasks and scheduled operations.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| dt | datetime | NO |
| ip | varchar(256) | NO |
| to | mediumtext | NO |
| subject | varchar(256) | NO |
| message | mediumtext | NO |
| headers | mediumtext | NO |
| attachments | longtext | NO |
| status | INT(2) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_acato_email_essentials_queue ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `dt` datetime NOT NULL, `ip` varchar(256) NOT NULL DEFAULT '', `to` mediumtext NOT NULL, `subject` varchar(256) NOT NULL DEFAULT '', `message` mediumtext NOT NULL, `headers` mediumtext NOT NULL, `attachments` longtext NOT NULL, `status` INT(2) NOT NULL, PRIMARY KEY (`id`), KEY `dt` (`dt`), KEY `ip` (`ip`(255)) ) 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_queue`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Email Essentials