wp_gj_email_queue
StaticA job queue table for managing background tasks and scheduled operations.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int(11) | NO |
| send_time | int(11) | NO |
| priority | tinyint(3) | NO |
| attemp | tinyint(3) | NO |
| from_name | varchar(255) | NO |
| from_address | varchar(255) | NO |
| recipients | varchar(255) | NO |
| subject | varchar(255) | NO |
| content | text | NO |
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