wp_wishsuite_list
StaticStores wishsuite list data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint( 20 ) unsigned | NO |
| user_id | bigint( 20 ) | YES |
| product_id | bigint(20) | YES |
| quantity | int(11) | YES |
| date_added | timestamp | NO |
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