wp_divismfo_uploads

Static

Stores divismfo uploads data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) UNSIGNEDYES
entry_idbigint(20) UNSIGNEDNO
field_idvarchar(100)NO
file_namevarchar(255)NO
file_urlvarchar(700)NO
file_sizebigint(20)YES
mime_typevarchar(100)YES
created_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE wp_divismfo_uploads ( id bigint(20) UNSIGNED AUTO_INCREMENT PRIMARY KEY, entry_id bigint(20) UNSIGNED NOT NULL, field_id varchar(100) NOT NULL, file_name varchar(255) NOT NULL, file_url varchar(700) NOT NULL, file_size bigint(20), mime_type varchar(100), created_at datetime DEFAULT CURRENT_TIMESTAMP, KEY entry_id (entry_id) ) $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_uploads`;

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

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