wp_wishsuite_list

Static

Stores wishsuite list data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint( 20 ) unsignedNO
user_idbigint( 20 )YES
product_idbigint(20)YES
quantityint(11)YES
date_addedtimestampNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_wishsuite_list` ( `id` bigint( 20 ) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint( 20 ) NULL DEFAULT NULL, `product_id` bigint(20) NULL DEFAULT NULL, `quantity` int(11) NULL DEFAULT NULL, `date_added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) $charset_collate"; if ( ! function_exists( 'dbDelta' ) ) { require_once ABSPATH . 'wp-admin/includes/upgrade.php'; } dbDelta( $schema );

Safe to delete?

If you have uninstalled ShopLentor – All-in-One WooCommerce Growth & Store Enhancement Plugin, 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_wishsuite_list`;

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

Other tables from ShopLentor – All-in-One WooCommerce Growth & Store Enhancement Plugin