wp_abs_time_slots
StaticStores abs time slots data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(10) UNSIGNED | YES |
| calendar_id | VARCHAR(10) | NO |
| day_name | VARCHAR(15) | NO |
| title | VARCHAR(250) | YES |
| booking_time | VARCHAR(20) | NO |
| space_available | INT(10) | NO |
| 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_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