wp_rsvp_volunteer_time
StaticStores rsvp volunteer time data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| event | int | NO |
| rsvp | int | NO |
| time | int | YES |
| user_id | int | YES |
| participants | int | NO |
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