wp_dokan_kits_settingsmeta

Static

Stores dokan kits settingsmeta data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
namevarchar(200)NO
valuelongtextNO
defaultlongtextYES
date_createddatetimeNO
date_modifieddatetimeNO
settings_idbigint(20) unsignedNO
meta_keyvarchar(255)YES
meta_valuelongtextYES

CREATE TABLE Statement

CREATE TABLE {$this->table_name} ( `id` bigint(20) unsigned NOT NULL auto_increment, `name` varchar(200) NOT NULL, `value` longtext NOT NULL, `default` longtext NULL, `date_created` datetime NOT NULL default CURRENT_TIMESTAMP, `date_modified` datetime NOT NULL default CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY name (name) ) $collate; CREATE TABLE wp_dokan_kits_settingsmeta ( `meta_id` bigint(20) unsigned NOT NULL auto_increment, `settings_id` bigint(20) unsigned NOT NULL, `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (meta_id), KEY settings_id (settings_id), KEY meta_key (meta_key(191)) ) $collate; ", $collate, $this );

Safe to delete?

If you have uninstalled Dokan Kits, 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_dokan_kits_settingsmeta`;

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

Other tables from Dokan Kits