wp_awebooking_booking_items

Verified

Stores awebooking booking items data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_awebooking_booking_items` (\n  `booking_item_id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `booking_item_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `booking_item_type` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `booking_item_parent` bigint unsigned NOT NULL,\n  `object_id` bigint unsigned NOT NULL,\n  `booking_id` bigint unsigned NOT NULL,\n  PRIMARY KEY (`booking_item_id`),\n  KEY `booking_item_parent` (`booking_item_parent`),\n  KEY `object_id` (`object_id`),\n  KEY `booking_id` (`booking_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled AweBooking – Hotel Booking System, 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_awebooking_booking_items`;

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

Other tables from AweBooking – Hotel Booking System