wp_rsvpmailer_blocked

Static

Stores rsvpmailer blocked data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDbigint(20) unsignedNO
emailvarchar(100)NO
codevarchar(50)NO
timestamptimestampNO

CREATE TABLE Statement

CREATE TABLE `wp_rsvpmailer_blocked` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `email` varchar(100) NOT NULL DEFAULT '', `code` varchar(50) NOT NULL DEFAULT '', `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`ID`), KEY `email` (`email`) ) ENGINE

Safe to delete?

If you have uninstalled RSVPMaker, 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_rsvpmailer_blocked`;

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

Other tables from RSVPMaker