wp_dk_submissions

Static

Stores form submissions and user-entered data.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
form_idBIGINT(20) UNSIGNEDNO
data_jsonLONGTEXTNO
ip_addressVARCHAR(45)YES
user_agentVARCHAR(512)YES
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_dk_submissions ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, form_id BIGINT(20) UNSIGNED NOT NULL, data_json LONGTEXT NOT NULL, ip_address VARCHAR(45) DEFAULT NULL, user_agent VARCHAR(512) DEFAULT NULL, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY idx_form_id (form_id), KEY idx_created (created_at) ) {$collate};" );

Safe to delete?

If you have uninstalled Dental Focus, 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_dk_submissions`;

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

Other tables from Dental Focus