wp_emsb_bookings

Static

Stores emsb bookings data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) UNSIGNEDYES
approve_bookingvarchar(20)YES
service_idint(11)NO
service_namevarchar(200)YES
service_pricetextYES
booked_date_idtextYES
booked_slot_idtextYES
booked_datetextYES
booked_time_slottextYES
customer_namevarchar(200)YES
customer_emailtextYES
customer_phonetextYES
booking_timeTIMESTAMPNO
customer_IPVARCHAR(100)NO
starting_time_msBIGINTNO
available_ordersint(11)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_emsb_bookings ( `id` int(11) UNSIGNED AUTO_INCREMENT PRIMARY KEY, `approve_booking` varchar(20), `service_id` int(11) NOT NULL, `service_name` varchar(200), `service_price` text, `booked_date_id` text, `booked_slot_id` text, `booked_date` text, `booked_time_slot` text, `customer_name` varchar(200), `customer_email` text, `customer_phone` text, `booking_time` TIMESTAMP NOT NULL, `customer_IP` VARCHAR(100) NOT NULL, `starting_time_ms` BIGINT NOT NULL, `available_orders` int(11) NOT NULL ) ENGINE

Safe to delete?

If you have uninstalled Doctor Appointment Booking Plugin – EMSB, 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_emsb_bookings`;

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

Other tables from Doctor Appointment Booking Plugin – EMSB