wp_gj_email_queue

Static

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

Column Definitions

ColumnTypeNullable
🔑IDint(11)NO
send_timeint(11)NO
prioritytinyint(3)NO
attemptinyint(3)NO
from_namevarchar(255)NO
from_addressvarchar(255)NO
recipientsvarchar(255)NO
subjectvarchar(255)NO
contenttextNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_gj_email_queue ( `ID` int(11) NOT NULL AUTO_INCREMENT, `send_time` int(11) NOT NULL, `priority` tinyint(3) NOT NULL, `attemp` tinyint(3) NOT NULL, `from_name` varchar(255) NOT NULL, `from_address` varchar(255) NOT NULL, `recipients` varchar(255) NOT NULL, `subject` varchar(255) NOT NULL, `content` text NOT NULL, PRIMARY KEY (`ID`) ) $collate;"; dbDelta($sql);

Safe to delete?

If you have uninstalled Grand Job, 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_gj_email_queue`;

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

Other tables from Grand Job