wp_mailnest_campaigns

Static

Stores mailnest campaigns data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
titleVARCHAR(255)NO
subjectVARCHAR(255)NO
preview_textVARCHAR(255)YES
bodyLONGTEXTNO
statusENUM('draft','scheduled','sending','sent','paused','archived')NO
scheduled_atDATETIMEYES
sent_atDATETIMEYES
created_atDATETIMEYES

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