wp_gstm_shortcodes
StaticStores gstm shortcodes data created by this plugin.
CREATE TABLE Statement
CREATE TABLE wp_gstm_shortcodes (\n id BIGINT(20) unsigned NOT NULL AUTO_INCREMENT,\n shortcode_name TEXT NOT NULL,\n shortcode_settings LONGTEXT NOT NULL,\n created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,\n updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n PRIMARY KEY (id)\n )" . $charset . ";"; if ( get_option( "wp_gstm_db_version" ) < $gstm_db_version ) { require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );Safe to delete?
If you have uninstalled Solid Testimonials – Testimonial Slider, Video Testimonials & Customer Reviews, 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_gstm_shortcodes`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.