wp_events_prices

Static

Stores events prices data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_events_prices` ( * `id` int(11) NOT NULL AUTO_INCREMENT, * `event_id` int(11) DEFAULT NULL, * `price_type` varchar(50) DEFAULT NULL, * `event_cost` decimal(20,2) NOT NULL DEFAULT '0.00', * `surcharge` decimal(10,2) NOT NULL DEFAULT '0.00', * `surcharge_type` varchar(10) DEFAULT NULL, * `member_price_type` varchar(50) DEFAULT NULL, * `member_price` decimal(20,2) NOT NULL DEFAULT '0.00', * `max_qty` int(7) DEFAULT '0', * `max_qty_members` int(7) DEFAULT '0', * PRIMARY KEY (`id`), * KEY `event_id` (`event_id`) * ) 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_prices`;

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

Other tables from Event Espresso – Event Registration & Ticketing Sales