wp_dk_submissions
StaticStores form submissions and user-entered data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| form_id | BIGINT(20) UNSIGNED | NO |
| data_json | LONGTEXT | NO |
| ip_address | VARCHAR(45) | YES |
| user_agent | VARCHAR(512) | YES |
| created_at | DATETIME | NO |
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