wp_jbusinessdirectory_company_provider_hours

Static

Stores jbusinessdirectory company provider hours data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
weekdaytinyint(1)YES
start_hourtimeYES
end_hourtimeYES
typetinyint(1)YES
statustinyint(1)YES
item_typetinyint(1)YES
provider_idintNO
datedateYES

CREATE TABLE Statement

CREATE TABLE `wp_jbusinessdirectory_company_provider_hours` ( `id` int NOT NULL AUTO_INCREMENT, `weekday` tinyint(1) DEFAULT NULL, `start_hour` time DEFAULT NULL, `end_hour` time DEFAULT NULL, `type` tinyint(1) DEFAULT NULL, `status` tinyint(1) DEFAULT '1', `item_type` tinyint(1) DEFAULT '0', `provider_id` int NOT NULL, `date` date DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_provider_id` (`provider_id`), KEY `idx_item_type` (`item_type`), KEY `idx_type` (`type`), KEY `idx_status` (`status`) ) 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_company_provider_hours`;

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

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