wp_divismfo_entry_meta

Static

Stores additional metadata (key-value pairs) for divismfo entry records.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) UNSIGNEDYES
entry_idbigint(20) UNSIGNEDNO
meta_keyvarchar(255)NO
meta_valuelongtextYES

CREATE TABLE Statement

CREATE TABLE wp_divismfo_entry_meta ( id bigint(20) UNSIGNED AUTO_INCREMENT PRIMARY KEY, entry_id bigint(20) UNSIGNED NOT NULL, meta_key varchar(255) NOT NULL, meta_value longtext, KEY entry_id (entry_id), KEY meta_key (meta_key(191)) ) $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_entry_meta`;

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

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