wp_mailnest_queue
StaticA job queue table for managing background tasks and scheduled operations.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| campaign_id | BIGINT(20) UNSIGNED | NO |
| subscriber_id | BIGINT(20) UNSIGNED | NO |
| status | ENUM('pending','sent','failed') | NO |
| sent_at | DATETIME | YES |
| error_msg | TEXT | YES |
CREATE TABLE Statement
CREATE TABLE wp_mailnest_queue ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, campaign_id BIGINT(20) UNSIGNED NOT NULL, subscriber_id BIGINT(20) UNSIGNED NOT NULL, status ENUM('pending','sent','failed') NOT NULL DEFAULT 'pending', sent_at DATETIME DEFAULT NULL, error_msg TEXT DEFAULT NULL, PRIMARY KEY (id), KEY campaign_status (campaign_id, 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_queue`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from MailNest