wp_wpwing_wl_waitlists
StaticStores wpwing wl waitlists data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| product_id | BIGINT UNSIGNED | NO |
| variation_id | BIGINT UNSIGNED | NO |
| VARCHAR(190) | NO | |
| user_id | BIGINT UNSIGNED | YES |
| status | VARCHAR(20) | NO |
| unsubscribe_token | VARCHAR(64) | NO |
| created_at | DATETIME | NO |
| notified_at | DATETIME | YES |
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