wp_dk_social_media

Static

Stores dk social media data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(11) UNSIGNEDNO
titleVARCHAR(255)NO
slugVARCHAR(255)NO
urlVARCHAR(500)NO
created_atDATETIMENO

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