wp_mailnest_subscribers
StaticStores mailnest subscribers data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| VARCHAR(255) | NO | |
| first_name | VARCHAR(100) | YES |
| last_name | VARCHAR(100) | YES |
| status | ENUM('pending','confirmed','unsubscribed') | NO |
| confirm_token | VARCHAR(64) | YES |
| subscribed_at | DATETIME | YES |
| ip_address | VARCHAR(45) | YES |
| meta_reeng_sent | DATETIME | YES |
| meta_reeng_opened | TINYINT(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