wp_dk_social_media
StaticStores dk social media data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) UNSIGNED | NO |
| title | VARCHAR(255) | NO |
| slug | VARCHAR(255) | NO |
| url | VARCHAR(500) | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_dk_social_media ( id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, title VARCHAR(255) NOT NULL, slug VARCHAR(255) NOT NULL, url VARCHAR(500) NOT NULL DEFAULT '', created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY udx_slug (slug) ) {$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_social_media`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Dental Focus