wp_vv_webhook_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| webhook_id | bigint(20) | NO |
| event_type | varchar(50) | NO |
| payload | longtext | YES |
| response | text | YES |
| http_code | int(11) | YES |
| created_at | timestamp | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_vv_webhook_logs ( id bigint(20) NOT NULL AUTO_INCREMENT, webhook_id bigint(20) NOT NULL, event_type varchar(50) NOT NULL, payload longtext, response text, http_code int(11) DEFAULT NULL, created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY webhook_id (webhook_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_webhook_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from VendorVerse aistore multi vendor store for WooCommerce