wp_jbusinessdirectory_request_quote_messages
StaticStores jbusinessdirectory request quote messages data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| quote_reply_id | int | NO |
| sender_id | int | NO |
| text | text | YES |
| created | timestamp | YES |
| status | tinyint | NO |
CREATE TABLE Statement
CREATE TABLE `wp_jbusinessdirectory_request_quote_messages` ( `id` int NOT NULL AUTO_INCREMENT, `quote_reply_id` int NOT NULL, `sender_id` int NOT NULL, `text` text, `created` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `status` tinyint NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_quote_reply` (`quote_reply_id`), KEY `idx_created` (`created`) ) ENGINE
Safe to delete?
If you have uninstalled WP-BusinessDirectory – Business directory plugin for WordPress, 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_jbusinessdirectory_request_quote_messages`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-BusinessDirectory – Business directory plugin for WordPress