wp_xfor_rooms

Static

Stores xfor rooms data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idtinyint(4)NO
namevarchar(250)YES
type_idsmallint(6)YES
statustinyint(4)YES
cleanervarchar(250)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_xfor_rooms` ( `id` tinyint(4) NOT NULL AUTO_INCREMENT, `name` varchar(250) DEFAULT NULL, `type_id` smallint(6) DEFAULT NULL, `status` tinyint(4) DEFAULT NULL, `cleaner` varchar(250) DEFAULT NULL, PRIMARY KEY (`id`) ) $collate;", "INSERT INTO `wp_xfor_rooms` (`name`, `type_id`, `status`, `cleaner`) VALUES (101, 1, 1, 'Ready'), (201, 2, 1, 'Cleaning'), (102, 1, 1, 'Dirty'), (103, 1, 1, 'Ready');

Safe to delete?

If you have uninstalled Hotel Booking by Xfor, 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_xfor_rooms`;

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

Other tables from Hotel Booking by Xfor