wp_hotel_booking_plans

Static

Stores hotel booking plans data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑plan_idbigint(20) unsignedNO
room_idbigint(20) unsignedNO
start_timetimestampYES
end_timetimestampYES
pricinglongtextYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_hotel_booking_plans ( plan_id bigint(20) unsigned NOT NULL AUTO_INCREMENT, room_id bigint(20) unsigned NOT NULL, start_time timestamp NULL, end_time timestamp NULL, pricing longtext NULL, UNIQUE KEY plan_id (plan_id), PRIMARY KEY (plan_id) ) $charset_collate; "; dbDelta( $sql );

Safe to delete?

If you have uninstalled WP Hotel Booking, 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_hotel_booking_plans`;

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

Other tables from WP Hotel Booking