wp_events_venue
StaticStores events venue data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_events_venue` ( * // `id` int(11) unsigned NOT NULL AUTO_INCREMENT, * // `name` varchar(250) DEFAULT NULL, * // `identifier` varchar(26) DEFAULT '0', * // `address` varchar(250) DEFAULT NULL, * // `address2` varchar(250) DEFAULT NULL, * // `city` varchar(250) DEFAULT NULL, * // `state` varchar(250) DEFAULT NULL, * // `zip` varchar(250) DEFAULT NULL, * // `country` varchar(250) DEFAULT NULL, * // `meta` text, * // `wp_user` int(22) DEFAULT '1', * // PRIMARY KEY (`id`), * // KEY `identifier` (`identifier`), * // KEY `wp_user` (`wp_user`) * //) ENGINE
Safe to delete?
If you have uninstalled Event Espresso – Event Registration & Ticketing Sales, 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_events_venue`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Event Espresso – Event Registration & Ticketing Sales