wp_delveant_form_submissions
StaticStores form definitions and related configuration.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| form_id | BIGINT(20) UNSIGNED | NO |
| status | VARCHAR(20) | NO |
| fields | LONGTEXT | NO |
| meta | LONGTEXT | NO |
| crm_status | VARCHAR(20) | NO |
| crm_response | LONGTEXT | YES |
| ip_address | VARCHAR(45) | YES |
| user_agent | TEXT | YES |
| page_url | TEXT | YES |
| referrer | TEXT | YES |
| submitted_at | DATETIME | NO |
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