wp_rsvpmailer_blocked
StaticStores rsvpmailer blocked data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) unsigned | NO |
| varchar(100) | NO | |
| code | varchar(50) | NO |
| timestamp | timestamp | NO |
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