wp_mailnest_subscribers

Static

Stores mailnest subscribers data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
emailVARCHAR(255)NO
first_nameVARCHAR(100)YES
last_nameVARCHAR(100)YES
statusENUM('pending','confirmed','unsubscribed')NO
confirm_tokenVARCHAR(64)YES
subscribed_atDATETIMEYES
ip_addressVARCHAR(45)YES
meta_reeng_sentDATETIMEYES
meta_reeng_openedTINYINT(1)YES

CREATE TABLE Statement

CREATE TABLE wp_mailnest_subscribers ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, email VARCHAR(255) NOT NULL, first_name VARCHAR(100) DEFAULT '', last_name VARCHAR(100) DEFAULT '', status ENUM('pending','confirmed','unsubscribed') NOT NULL DEFAULT 'pending', confirm_token VARCHAR(64) DEFAULT NULL, subscribed_at DATETIME DEFAULT CURRENT_TIMESTAMP, ip_address VARCHAR(45) DEFAULT NULL, meta_reeng_sent DATETIME DEFAULT NULL, meta_reeng_opened TINYINT(1) DEFAULT 0, PRIMARY KEY (id), UNIQUE KEY email (email), 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_subscribers`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from MailNest