wp_mailnest_campaigns
StaticStores mailnest campaigns data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| title | VARCHAR(255) | NO |
| subject | VARCHAR(255) | NO |
| preview_text | VARCHAR(255) | YES |
| body | LONGTEXT | NO |
| status | ENUM('draft','scheduled','sending','sent','paused','archived') | NO |
| scheduled_at | DATETIME | YES |
| sent_at | DATETIME | YES |
| created_at | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE wp_mailnest_campaigns ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, title VARCHAR(255) NOT NULL, subject VARCHAR(255) NOT NULL, preview_text VARCHAR(255) DEFAULT '', body LONGTEXT NOT NULL, status ENUM('draft','scheduled','sending','sent','paused','archived') NOT NULL DEFAULT 'draft', scheduled_at DATETIME DEFAULT NULL, sent_at DATETIME DEFAULT NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY status_idx (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_campaigns`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from MailNest