wp_wpmm_subscribers

Static

Stores wpmm subscribers data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑id_subscriberbigint(20)NO
emailvarchar(50)NO
insert_datedatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_wpmm_subscribers ( `id_subscriber` bigint(20) NOT NULL AUTO_INCREMENT, `email` varchar(50) NOT NULL, `insert_date` datetime NOT NULL, PRIMARY KEY (`id_subscriber`) ) DEFAULT CHARSET

Safe to delete?

If you have uninstalled LightStart – Maintenance Mode, Coming Soon and Landing Page Builder, 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_wpmm_subscribers`;

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