wp_rsvpmaker
StaticStores rsvpmaker data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| varchar(255) | YES | |
| yesno | tinyint(4) | NO |
| first | varchar(255) | NO |
| last | varchar(255) | NO |
| details | text | NO |
| event | int | NO |
| owed | float(6,2) | NO |
| amountpaid | float(6,2) | NO |
| fee_total | float(6,2) | NO |
| master_rsvp | int | NO |
| guestof | varchar(255) | YES |
| note | text | NO |
| participants | INT | NO |
| user_id | INT | NO |
| form_id | INT | NO |
| timestamp | timestamp | NO |
CREATE TABLE Statement
CREATE TABLE `wp_rsvpmaker` ( `id` int NOT NULL auto_increment, `email` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci default NULL, `yesno` tinyint(4) NOT NULL default '0', `first` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL default '', `last` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL default '', `details` text CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `event` int NOT NULL default '0', `owed` float(6,2) NOT NULL default '0.00', `amountpaid` float(6,2) NOT NULL default '0.00', `fee_total` float(6,2) NOT NULL default '0.00', `master_rsvp` int NOT NULL default '0', `guestof` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci default NULL, `note` text CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `participants` INT NOT NULL DEFAULT '0', `user_id` INT NOT NULL DEFAULT '0', `form_id` INT NOT NULL DEFAULT '0', `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) 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_rsvpmaker`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from RSVPMaker