wp_wpwing_wl_wishlists

Static

Stores wpwing wl wishlists data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
user_idBIGINT UNSIGNEDYES
guest_tokenVARCHAR(64)YES
product_idBIGINT UNSIGNEDNO
variation_idBIGINT UNSIGNEDNO
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_wpwing_wl_wishlists ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, user_id BIGINT UNSIGNED DEFAULT NULL, guest_token VARCHAR(64) DEFAULT NULL, product_id BIGINT UNSIGNED NOT NULL, variation_id BIGINT UNSIGNED NOT NULL DEFAULT 0, created_at DATETIME NOT NULL, PRIMARY KEY (id), UNIQUE KEY unique_user_item (user_id, product_id, variation_id), UNIQUE KEY unique_guest_item (guest_token, product_id, variation_id), KEY user_id (user_id), KEY guest_token (guest_token) ) ENGINE

Safe to delete?

If you have uninstalled Smart Wishlist & Product Waitlist for WooCommerce, 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_wpwing_wl_wishlists`;

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

Other tables from Smart Wishlist & Product Waitlist for WooCommerce