wp_abs_calendar

Static

Stores abs calendar data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(10) UNSIGNEDYES
nameVARCHAR(150)NO
booking_typeVARCHAR(50)NO
appointment_typeVARCHAR(25)NO
appointment_defaultVARCHAR(50)NO
statusINT(2)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_abs_calendar ( id INT(10) UNSIGNED AUTO_INCREMENT, name VARCHAR(150) NOT NULL, booking_type VARCHAR(50) NOT NULL, appointment_type VARCHAR(25) NOT NULL, appointment_default VARCHAR(50) NOT NULL, status INT(2) DEFAULT 0, PRIMARY KEY (id) ) $charset_collate"; $this->table_migrate( $abs_calendar );

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_calendar`;

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