wp_delveant_form_suite

Static

Stores form definitions and related configuration.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
titleVARCHAR(255)NO
slugVARCHAR(200)NO
statusVARCHAR(20)NO
form_fieldsLONGTEXTNO
form_settingsLONGTEXTNO
crm_settingsLONGTEXTNO
mail_settingsLONGTEXTNO
created_byBIGINT(20) UNSIGNEDNO
created_atDATETIMENO
updated_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_delveant_form_suite ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, title VARCHAR(255) NOT NULL DEFAULT '', slug VARCHAR(200) NOT NULL DEFAULT '', status VARCHAR(20) NOT NULL DEFAULT 'publish', form_fields LONGTEXT NOT NULL DEFAULT '[]', form_settings LONGTEXT NOT NULL DEFAULT '{}', crm_settings LONGTEXT NOT NULL DEFAULT '{}', mail_settings LONGTEXT NOT NULL DEFAULT '{}', created_by BIGINT(20) UNSIGNED NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY status (status), KEY slug (slug) ) $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_suite`;

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

Other tables from Delveant Form Suite