wp_lslide_config
StaticStores lslide config data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑LSlide_id | INT | YES |
| LSlide_Name | varchar(255) | NO |
| LSlide_Settings | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_LSlide_Config (LSlide_id INT AUTO_INCREMENT PRIMARY KEY, LSlide_Name varchar(255) NOT NULL, LSlide_Settings varchar(255) NOT NULL);
Safe to delete?
If you have uninstalled Featured Lyth Slide, 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_lslide_config`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.