wp_evf_entries
StaticStores form submissions and user-entered data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑entry_id | BIGINT UNSIGNED | NO |
| form_id | BIGINT UNSIGNED | NO |
| user_id | BIGINT UNSIGNED | NO |
| user_device | varchar(100) | NO |
| user_ip_address | VARCHAR(100) | YES |
| referer | text | NO |
| fields | longtext | YES |
| status | varchar(20) | NO |
| viewed | tinyint(1) | NO |
| starred | tinyint(1) | NO |
| date_created | datetime | NO |
| entry_id | BIGINT UNSIGNED | NO |
| meta_key | varchar(255) | YES |
| meta_value | longtext | YES |
| session_key | char(32) | NO |
| session_value | longtext | NO |
| session_expiry | BIGINT UNSIGNED | NO |
CREATE TABLE Statement
CREATE TABLE wp_evf_entries ( entry_id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, form_id BIGINT UNSIGNED NOT NULL, user_id BIGINT UNSIGNED NOT NULL, user_device varchar(100) NOT NULL, user_ip_address VARCHAR(100) NULL DEFAULT '', referer text NOT NULL, fields longtext NULL, status varchar(20) NOT NULL, viewed tinyint(1) NOT NULL DEFAULT '0', starred tinyint(1) NOT NULL DEFAULT '0', date_created datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (entry_id), KEY form_id (form_id) ) $charset_collate; CREATE TABLE wp_evf_entrymeta ( meta_id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, entry_id BIGINT UNSIGNED NOT NULL, meta_key varchar(255) default NULL, meta_value longtext NULL, PRIMARY KEY (meta_id), KEY entry_id (entry_id), KEY meta_key (meta_key(32)) ) $charset_collate; CREATE TABLE wp_evf_sessions ( session_id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, session_key char(32) NOT NULL, session_value longtext NOT NULL, session_expiry BIGINT UNSIGNED NOT NULL, PRIMARY KEY (session_id), UNIQUE KEY session_key (session_key) ) $charset_collate; "; return $tables; } /** * Return a list of EverestForms tables. Used to make sure all UM tables are dropped when uninstalling the plugin * in a single site or multi site environment. * * @return array UM tables. */ public static function get_tables() { global $wpdb; $tables = array( "wp_evf_entries", "wp_evf_entrymeta", "wp_evf_sessions", );Safe to delete?
If you have uninstalled Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder, 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_evf_entries`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder