wp_rsvpmaker

Static

Stores rsvpmaker data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
emailvarchar(255)YES
yesnotinyint(4)NO
firstvarchar(255)NO
lastvarchar(255)NO
detailstextNO
eventintNO
owedfloat(6,2)NO
amountpaidfloat(6,2)NO
fee_totalfloat(6,2)NO
master_rsvpintNO
guestofvarchar(255)YES
notetextNO
participantsINTNO
user_idINTNO
form_idINTNO
timestamptimestampNO

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