wp_gsp_user_items
StaticStores gsp user items data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑user_item_id | bigint(20) | NO |
| user_id | bigint(20) | YES |
| item_id | bigint(20) | YES |
| start_time | datetime | YES |
| end_time | datetime | YES |
| status | varchar(45) | YES |
| ref_id | bigint(20) | YES |
| ref_type | varchar(45) | YES |
| parent_id | bigint(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