wp_jbusinessdirectory_trips
StaticStores jbusinessdirectory trips data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int | NO |
| name | varchar(255) | NO |
| alias | varchar(100) | NO |
| description | text | YES |
| start_date | date | YES |
| end_date | date | YES |
| start_time | time | YES |
| end_time | time | YES |
| frequency | int | NO |
| recurring_info | longtext | YES |
| capacity | int | YES |
| organizer | varchar(100) | YES |
| phone | varchar(45) | YES |
| varchar(45) | YES | |
| approved | tinyint(1) | NO |
| companyId | varchar(255) | YES |
CREATE TABLE Statement
CREATE TABLE `wp_jbusinessdirectory_trips` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `alias` varchar(100) NOT NULL DEFAULT '', `description` text, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `start_time` time DEFAULT NULL, `end_time` time DEFAULT NULL, `frequency` int NOT NULL DEFAULT '0', `recurring_info` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `capacity` int DEFAULT NULL, `organizer` varchar(100) DEFAULT NULL, `phone` varchar(45) DEFAULT NULL, `email` varchar(45) DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT '1', `companyId` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_name` (`name`), KEY `idx_alias` (`alias`), KEY `idx_frequency` (`frequency`) ) 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_trips`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-BusinessDirectory – Business directory plugin for WordPress