wp_dokan_kits_settingsmeta
StaticStores dokan kits settingsmeta data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| name | varchar(200) | NO |
| value | longtext | NO |
| default | longtext | YES |
| date_created | datetime | NO |
| date_modified | datetime | NO |
| settings_id | bigint(20) unsigned | NO |
| meta_key | varchar(255) | YES |
| meta_value | longtext | YES |
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