wp_abs_custom_time_slots
StaticStores abs custom time slots data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(10) UNSIGNED | YES |
| calendar_id | VARCHAR(10) | NO |
| start_date | VARCHAR(20) | NO |
| end_date | VARCHAR(20) | NO |
| slots_type | INT(2) | YES |
| title | VARCHAR(250) | YES |
| booking_time | VARCHAR(20) | YES |
| space_available | INT(10) | YES |
| booked_space | INT(10) | YES |
| product | INT(50) | YES |
| booked_space_cancel | INT(10) | YES |
| status | INT(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