wp_wpwing_wl_wishlists
StaticStores wpwing wl wishlists data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| user_id | BIGINT UNSIGNED | YES |
| guest_token | VARCHAR(64) | YES |
| product_id | BIGINT UNSIGNED | NO |
| variation_id | BIGINT UNSIGNED | NO |
| created_at | DATETIME | NO |
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