wp_gsp_user_retakemeta

Static

Stores gsp user retakemeta data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑meta_idbigint(20)NO
gsp_user_item_idbigint(20)YES
meta_keyvarchar(250)YES
meta_valuetextYES
extra_valuelongtextYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_gsp_user_retakemeta ( `meta_id` bigint(20) NOT NULL AUTO_INCREMENT, `gsp_user_item_id` bigint(20) NULL, `meta_key` varchar(250) NULL, `meta_value` text NULL, `extra_value` longtext NULL,PRIMARY KEY (`meta_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_user_retakemeta`;

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

Other tables from Quick Learn