wp_hotel_booking_order_itemmeta
StaticStores order records and related transaction data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑meta_id | bigint(20) unsigned | NO |
| hotel_booking_order_item_id | bigint(20) unsigned | NO |
| meta_key | varchar(255) | YES |
| meta_value | longtext | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_hotel_booking_order_itemmeta ( meta_id bigint(20) unsigned NOT NULL AUTO_INCREMENT, hotel_booking_order_item_id bigint(20) unsigned NOT NULL, meta_key varchar(255) NULL, meta_value longtext NULL, UNIQUE KEY meta_id (meta_id), PRIMARY KEY (meta_id), KEY hotel_booking_order_item_id(hotel_booking_order_item_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_order_itemmeta`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP Hotel Booking