wp_abs_custom_time_slots

Static

Stores abs custom time slots data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(10) UNSIGNEDYES
calendar_idVARCHAR(10)NO
start_dateVARCHAR(20)NO
end_dateVARCHAR(20)NO
slots_typeINT(2)YES
titleVARCHAR(250)YES
booking_timeVARCHAR(20)YES
space_availableINT(10)YES
booked_spaceINT(10)YES
productINT(50)YES
booked_space_cancelINT(10)YES
statusINT(2)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_abs_custom_time_slots ( id INT(10) UNSIGNED AUTO_INCREMENT, calendar_id VARCHAR(10) NOT NULL, start_date VARCHAR(20) NOT NULL, end_date VARCHAR(20) NOT NULL, slots_type INT(2) DEFAULT NULL, title VARCHAR(250) DEFAULT NULL, booking_time VARCHAR(20) DEFAULT NULL, space_available INT(10) DEFAULT NULL, booked_space INT(10) DEFAULT 1, product INT(50) DEFAULT NULL, booked_space_cancel INT(10) DEFAULT 0, status INT(2) DEFAULT 0, PRIMARY KEY (id) ) $charset_collate"; $this->table_migrate( $custom_time_slots_schema );

Safe to delete?

If you have uninstalled Easy Booked – Appointment Booking and Scheduling Management System 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_abs_custom_time_slots`;

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

Other tables from Easy Booked – Appointment Booking and Scheduling Management System for WordPress