wp_divismfo_entries

Static

Stores form submissions and user-entered data.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) UNSIGNEDYES
form_idbigint(20) UNSIGNEDNO
user_idbigint(20) UNSIGNEDYES
datalongtextYES
user_ipvarchar(45)YES
user_agentvarchar(255)YES
statusvarchar(20)YES
created_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE wp_divismfo_entries ( id bigint(20) UNSIGNED AUTO_INCREMENT PRIMARY KEY, form_id bigint(20) UNSIGNED NOT NULL, user_id bigint(20) UNSIGNED DEFAULT NULL, data longtext, user_ip varchar(45), user_agent varchar(255), status varchar(20) DEFAULT 'unread', created_at datetime DEFAULT CURRENT_TIMESTAMP, KEY form_id (form_id), KEY status (status), KEY created_at (created_at) ) $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_entries`;

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

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