wp_mailnest_welcome_queue
StaticA job queue table for managing background tasks and scheduled operations.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| subscriber_id | BIGINT(20) UNSIGNED | NO |
| step_index | TINYINT(3) UNSIGNED | NO |
| status | ENUM('pending','sent','failed','skipped') | NO |
| send_at | DATETIME | NO |
| sent_at | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE wp_mailnest_welcome_queue ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, subscriber_id BIGINT(20) UNSIGNED NOT NULL, step_index TINYINT(3) UNSIGNED NOT NULL DEFAULT 0, status ENUM('pending','sent','failed','skipped') NOT NULL DEFAULT 'pending', send_at DATETIME NOT NULL, sent_at DATETIME DEFAULT NULL, PRIMARY KEY (id), KEY subscriber_status (subscriber_id, status), KEY send_at_status (send_at, status) ) $charset;");Safe to delete?
If you have uninstalled MailNest, 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_mailnest_welcome_queue`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from MailNest