wp_es_subscriber_ips
StaticStores es subscriber ips data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| ip | varchar(45) | NO |
| created_at | TIMESTAMP | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_es_subscriber_ips ( ip varchar(45) NOT NULL, created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (created_at, ip), KEY ip (ip) ) $charset_collate"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $es_subscriber_ips_table );
Safe to delete?
If you have uninstalled Email Subscribers & Newsletters – Email Marketing, Post Notifications & Newsletter Plugin for WordPress, 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_es_subscriber_ips`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Email Subscribers & Newsletters – Email Marketing, Post Notifications & Newsletter Plugin for WordPress