wp_lslide_config

Static

Stores lslide config data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑LSlide_idINTYES
LSlide_Namevarchar(255)NO
LSlide_Settingsvarchar(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.