wp_delveant_form_submissions

Static

Stores form definitions and related configuration.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
form_idBIGINT(20) UNSIGNEDNO
statusVARCHAR(20)NO
fieldsLONGTEXTNO
metaLONGTEXTNO
crm_statusVARCHAR(20)NO
crm_responseLONGTEXTYES
ip_addressVARCHAR(45)YES
user_agentTEXTYES
page_urlTEXTYES
referrerTEXTYES
submitted_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_delveant_form_submissions ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, form_id BIGINT(20) UNSIGNED NOT NULL, status VARCHAR(20) NOT NULL DEFAULT 'new', fields LONGTEXT NOT NULL, meta LONGTEXT NOT NULL, crm_status VARCHAR(20) NOT NULL DEFAULT 'pending', crm_response LONGTEXT NULL, ip_address VARCHAR(45) NULL, user_agent TEXT NULL, page_url TEXT NULL, referrer TEXT NULL, submitted_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY form_id (form_id), KEY status (status), KEY crm_status (crm_status), KEY submitted_at (submitted_at) ) $charset_collate;" );

Safe to delete?

If you have uninstalled Delveant Form Suite, 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_delveant_form_submissions`;

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

Other tables from Delveant Form Suite