wp_evf_entries

Static

Stores form submissions and user-entered data.

Column Definitions

ColumnTypeNullable
🔑entry_idBIGINT UNSIGNEDNO
form_idBIGINT UNSIGNEDNO
user_idBIGINT UNSIGNEDNO
user_devicevarchar(100)NO
user_ip_addressVARCHAR(100)YES
referertextNO
fieldslongtextYES
statusvarchar(20)NO
viewedtinyint(1)NO
starredtinyint(1)NO
date_createddatetimeNO
entry_idBIGINT UNSIGNEDNO
meta_keyvarchar(255)YES
meta_valuelongtextYES
session_keychar(32)NO
session_valuelongtextNO
session_expiryBIGINT UNSIGNEDNO

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