wp_rsvp_volunteer_time

Static

Stores rsvp volunteer time data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
eventintNO
rsvpintNO
timeintYES
user_idintYES
participantsintNO

CREATE TABLE Statement

CREATE TABLE `wp_rsvp_volunteer_time` ( `id` int NOT NULL auto_increment, `event` int NOT NULL default '0', `rsvp` int NOT NULL default '0', `time` int default '0', `user_id` int default '0', `participants` int NOT NULL default '0', 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_rsvp_volunteer_time`;

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

Other tables from RSVPMaker