wp_dynamic_shortcode_globalsettings

Static

Stores dynamic shortcode globalsettings data created by this plugin.

Column Definitions

ColumnTypeNullable
shortcode_namevarchar(255)NO
is_editabletinyint(1)NO
setting_typevarchar(255)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_dynamic_shortcode_globalsettings ( shortcode_name varchar(255) NOT NULL, is_editable tinyint(1) NOT NULL, setting_type varchar(255) NOT NULL, PRIMARY KEY (shortcode_name, setting_type)) $charset_collate;"; dbDelta($sql);

Safe to delete?

If you have uninstalled Dynamic Shortcode, 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_dynamic_shortcode_globalsettings`;

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

Other tables from Dynamic Shortcode