wp_gs_yt_gallery
StaticStores gs yt gallery data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) unsigned | NO |
| shortcode_name | TEXT | NO |
| shortcode_settings | LONGTEXT | NO |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_gs_yt_gallery ( id BIGINT(20) unsigned NOT NULL AUTO_INCREMENT, shortcode_name TEXT NOT NULL, shortcode_settings LONGTEXT NOT NULL, created_at DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', updated_at DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (id) )" . $wpdb->get_charset_collate() . ';'; if ( get_option( "wp_gs_yt_gallery_db_version" ) < $gs_yt_gallery_db_version ) { dbDelta( $sql );Safe to delete?
If you have uninstalled GS YouTube Gallery – Video Feed, Channel Playlist & YouTube Slider, 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_gs_yt_gallery`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.