wp_wpwing_wl_waitlists

Static

Stores wpwing wl waitlists data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
product_idBIGINT UNSIGNEDNO
variation_idBIGINT UNSIGNEDNO
emailVARCHAR(190)NO
user_idBIGINT UNSIGNEDYES
statusVARCHAR(20)NO
unsubscribe_tokenVARCHAR(64)NO
created_atDATETIMENO
notified_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE wp_wpwing_wl_waitlists ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, product_id BIGINT UNSIGNED NOT NULL, variation_id BIGINT UNSIGNED NOT NULL DEFAULT 0, email VARCHAR(190) NOT NULL, user_id BIGINT UNSIGNED DEFAULT NULL, status VARCHAR(20) NOT NULL DEFAULT 'active', unsubscribe_token VARCHAR(64) NOT NULL, created_at DATETIME NOT NULL, notified_at DATETIME DEFAULT NULL, PRIMARY KEY (id), KEY product_var (product_id, variation_id), KEY email_status (email, status), KEY status_created (status, created_at), KEY user_id (user_id), KEY unsubscribe_token (unsubscribe_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_waitlists`;

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

Other tables from Smart Wishlist & Product Waitlist for WooCommerce