wp_vv_fraud_alerts
StaticStores vv fraud alerts data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| vendor_id | bigint(20) | YES |
| customer_id | bigint(20) | YES |
| order_id | bigint(20) | YES |
| alert_type | varchar(50) | NO |
| severity | varchar(20) | NO |
| details | text | YES |
| is_resolved | tinyint(1) | NO |
| created_at | timestamp | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_vv_fraud_alerts ( id bigint(20) NOT NULL AUTO_INCREMENT, vendor_id bigint(20) DEFAULT NULL, customer_id bigint(20) DEFAULT NULL, order_id bigint(20) DEFAULT NULL, alert_type varchar(50) NOT NULL, severity varchar(20) NOT NULL DEFAULT 'low', details text, is_resolved tinyint(1) NOT NULL DEFAULT 0, created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY alert_type (alert_type), KEY is_resolved (is_resolved) ) $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_fraud_alerts`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from VendorVerse aistore multi vendor store for WooCommerce