wp_jbusinessdirectory_company_provider_hours
StaticStores jbusinessdirectory company provider hours data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| weekday | tinyint(1) | YES |
| start_hour | time | YES |
| end_hour | time | YES |
| type | tinyint(1) | YES |
| status | tinyint(1) | YES |
| item_type | tinyint(1) | YES |
| provider_id | int | NO |
| date | date | YES |
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