wp_gsp_lms_setting_meta

Static

Stores additional metadata (key-value pairs) for gsp lms setting records.

Column Definitions

ColumnTypeNullable
🔑gsp_setting_idint(11)NO
meta_keyvarchar(255)YES
meta_valuetextYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_gsp_lms_setting_meta ( `gsp_setting_id` int(11) NOT NULL AUTO_INCREMENT, `meta_key` varchar(255) NULL, `meta_value` text NULL,PRIMARY KEY (`gsp_setting_id`) ) {$collate}");

Safe to delete?

If you have uninstalled Quick Learn, 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_gsp_lms_setting_meta`;

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

Other tables from Quick Learn