wp_vv_messages
StaticStores vv messages data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| conversation_id | bigint(20) | NO |
| sender_id | bigint(20) | NO |
| receiver_id | bigint(20) | NO |
| order_id | bigint(20) | NO |
| message | text | NO |
| attachment_url | varchar(500) | YES |
| is_read | tinyint(1) | NO |
| created_at | timestamp | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_vv_messages ( id bigint(20) NOT NULL AUTO_INCREMENT, conversation_id bigint(20) NOT NULL, sender_id bigint(20) NOT NULL, receiver_id bigint(20) NOT NULL, order_id bigint(20) NOT NULL DEFAULT 0, message text NOT NULL, attachment_url varchar(500) DEFAULT NULL, is_read tinyint(1) NOT NULL DEFAULT 0, created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY conversation_id (conversation_id), KEY receiver_id (receiver_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_messages`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from VendorVerse aistore multi vendor store for WooCommerce