wp_divismfo_forms

Static

Stores form definitions and related configuration.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) UNSIGNEDYES
titlevarchar(255)NO
shortcodevarchar(100)NO
statusvarchar(20)YES
fieldslongtextYES
settingslongtextYES
created_atdatetimeYES
updated_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE wp_divismfo_forms ( id bigint(20) UNSIGNED AUTO_INCREMENT PRIMARY KEY, title varchar(255) NOT NULL, shortcode varchar(100) NOT NULL, status varchar(20) DEFAULT 'active', fields longtext, settings longtext, created_at datetime DEFAULT CURRENT_TIMESTAMP, updated_at datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, UNIQUE KEY shortcode (shortcode), KEY status (status) ) $cc;");

Safe to delete?

If you have uninstalled Divine Smart Forms – Drag & Drop Contact 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_divismfo_forms`;

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

Other tables from Divine Smart Forms – Drag & Drop Contact Form Builder