wp_delveant_form_suite
StaticStores form definitions and related configuration.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| title | VARCHAR(255) | NO |
| slug | VARCHAR(200) | NO |
| status | VARCHAR(20) | NO |
| form_fields | LONGTEXT | NO |
| form_settings | LONGTEXT | NO |
| crm_settings | LONGTEXT | NO |
| mail_settings | LONGTEXT | NO |
| created_by | BIGINT(20) UNSIGNED | NO |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
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