wp_gsp_user_items

Static

Stores gsp user items data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑user_item_idbigint(20)NO
user_idbigint(20)YES
item_idbigint(20)YES
start_timedatetimeYES
end_timedatetimeYES
statusvarchar(45)YES
ref_idbigint(20)YES
ref_typevarchar(45)YES
parent_idbigint(20)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_gsp_user_items ( `user_item_id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NULL, `item_id` bigint(20) NULL, `start_time` datetime NULL, `end_time` datetime NULL, `status` varchar(45) NULL, `ref_id` bigint(20) NULL, `ref_type` varchar(45) NULL, `parent_id` bigint(20) NULL,PRIMARY KEY (`user_item_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_items`;

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

Other tables from Quick Learn