wp_abs_time_slots

Static

Stores abs time slots data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(10) UNSIGNEDYES
calendar_idVARCHAR(10)NO
day_nameVARCHAR(15)NO
titleVARCHAR(250)YES
booking_timeVARCHAR(20)NO
space_availableINT(10)NO
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_time_slots ( id INT(10) UNSIGNED AUTO_INCREMENT, calendar_id VARCHAR(10) NOT NULL, day_name VARCHAR(15) NOT NULL, title VARCHAR(250) DEFAULT NULL, booking_time VARCHAR(20) NOT NULL, space_available INT(10) NOT NULL, booked_space INT(10 ) DEFAULT 0, 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( $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_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