wp_divismfo_entries
StaticStores form submissions and user-entered data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) UNSIGNED | YES |
| form_id | bigint(20) UNSIGNED | NO |
| user_id | bigint(20) UNSIGNED | YES |
| data | longtext | YES |
| user_ip | varchar(45) | YES |
| user_agent | varchar(255) | YES |
| status | varchar(20) | YES |
| created_at | datetime | YES |
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