wp_jbusinessdirectory_trips

Static

Stores jbusinessdirectory trips data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
namevarchar(255)NO
aliasvarchar(100)NO
descriptiontextYES
start_datedateYES
end_datedateYES
start_timetimeYES
end_timetimeYES
frequencyintNO
recurring_infolongtextYES
capacityintYES
organizervarchar(100)YES
phonevarchar(45)YES
emailvarchar(45)YES
approvedtinyint(1)NO
companyIdvarchar(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