wp_acato_email_essentials_queue

Static

A job queue table for managing background tasks and scheduled operations.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
dtdatetimeNO
ipvarchar(256)NO
tomediumtextNO
subjectvarchar(256)NO
messagemediumtextNO
headersmediumtextNO
attachmentslongtextNO
statusINT(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