wp_jbusinessdirectory_trip_bookings

Static

Stores jbusinessdirectory trip bookings data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
trip_idintNO
trip_datedateNO
trip_timetimeYES
first_namevarchar(45)YES
last_namevarchar(45)YES
addressvarchar(100)YES
emailvarchar(45)YES
phonevarchar(45)YES
postal_codevarchar(45)YES
createdtimestampNO
confirmed_atdatetimeYES
statustinyintYES
user_idintYES

CREATE TABLE Statement

CREATE TABLE `wp_jbusinessdirectory_trip_bookings` ( `id` int NOT NULL AUTO_INCREMENT, `trip_id` int NOT NULL, `trip_date` date NOT NULL, `trip_time` time DEFAULT NULL, `first_name` varchar(45) DEFAULT NULL, `last_name` varchar(45) DEFAULT NULL, `address` varchar(100) DEFAULT NULL, `email` varchar(45) DEFAULT NULL, `phone` varchar(45) DEFAULT NULL, `postal_code` varchar(45) DEFAULT NULL, `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `confirmed_at` datetime DEFAULT NULL, `status` tinyint DEFAULT NULL, `user_id` int DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_user_id` (`user_id`), KEY `idx_trip` (`trip_id`) ) 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_trip_bookings`;

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

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