wp_hotel_booking_plans
StaticStores hotel booking plans data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑plan_id | bigint(20) unsigned | NO |
| room_id | bigint(20) unsigned | NO |
| start_time | timestamp | YES |
| end_time | timestamp | YES |
| pricing | longtext | YES |
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