wp_events_question

Static

Stores events question data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_events_question` ( * `id` int(11) unsigned NOT NULL AUTO_INCREMENT, * `sequence` int(11) NOT NULL DEFAULT '0', * `question_type` enum('TEXT','TEXTAREA','MULTIPLE','SINGLE','DROPDOWN') NOT NULL DEFAULT 'TEXT', * `question` text NOT NULL, * `system_name` varchar(15) DEFAULT NULL, * `response` text, * `required` enum('Y','N') NOT NULL DEFAULT 'N', * `price_mod` enum('Y','N') NOT NULL DEFAULT 'N', * `required_text` text, * `admin_only` enum('Y','N') NOT NULL DEFAULT 'N', * `wp_user` int(22) DEFAULT '1', * PRIMARY KEY (`id`), * KEY `wp_user` (`wp_user`), * KEY `system_name` (`system_name`), * KEY `admin_only` (`admin_only`) * ) 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_question`;

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

Other tables from Event Espresso – Event Registration & Ticketing Sales