wp_dynamic_shortcode

Static

Stores dynamic shortcode data created by this plugin.

Column Definitions

ColumnTypeNullable
id_sessionvarchar(255)NO
datalongtextNO
get_post_paramslongtextYES
expiration_datetimestampNO
current_urllongtextNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_dynamic_shortcode ( id_session varchar(255) NOT NULL, data longtext NOT NULL, get_post_params longtext NULL, expiration_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, current_url longtext NOT NULL, PRIMARY KEY (id_session)) $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`;

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

Other tables from Dynamic Shortcode