wp_vv_webhooks
StaticStores vv webhooks data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| vendor_id | bigint(20) | NO |
| name | varchar(100) | NO |
| url | varchar(500) | NO |
| event_type | varchar(50) | NO |
| secret_key | varchar(64) | NO |
| is_active | tinyint(1) | NO |
| created_at | timestamp | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_vv_webhooks ( id bigint(20) NOT NULL AUTO_INCREMENT, vendor_id bigint(20) NOT NULL, name varchar(100) NOT NULL, url varchar(500) NOT NULL, event_type varchar(50) NOT NULL, secret_key varchar(64) NOT NULL DEFAULT '', is_active tinyint(1) NOT NULL DEFAULT 1, created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY vendor_id (vendor_id) ) $charset;" );
Safe to delete?
If you have uninstalled VendorVerse aistore multi vendor store 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_vv_webhooks`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from VendorVerse aistore multi vendor store for WooCommerce