wp_jbusinessdirectory_bookmarks

Static

Stores jbusinessdirectory bookmarks data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
item_idintYES
user_idintYES
notevarchar(255)YES
item_typetinyint(1)YES
company_idvarchar(100)YES
orderingintNO
createdtimestampNO

CREATE TABLE Statement

CREATE TABLE `wp_jbusinessdirectory_bookmarks` ( `id` int NOT NULL AUTO_INCREMENT, `item_id` int DEFAULT NULL, `user_id` int DEFAULT NULL, `note` varchar(255) DEFAULT NULL, `item_type` tinyint(1) DEFAULT '1', `company_id` varchar(100) DEFAULT NULL, `ordering` int NOT NULL DEFAULT '0', `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `unq_bkm` (`item_id`,`user_id`,`item_type`), KEY `idx_item_id` (`item_id`), KEY `idx_user_id` (`user_id`), KEY `idx_item_type` (`item_type`) ) 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_bookmarks`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from WP-BusinessDirectory – Business directory plugin for WordPress