wp_divismfo_uploads
StaticStores divismfo uploads data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) UNSIGNED | YES |
| entry_id | bigint(20) UNSIGNED | NO |
| field_id | varchar(100) | NO |
| file_name | varchar(255) | NO |
| file_url | varchar(700) | NO |
| file_size | bigint(20) | YES |
| mime_type | varchar(100) | YES |
| created_at | datetime | YES |
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