wp_xfor_rooms
StaticStores xfor rooms data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | tinyint(4) | NO |
| name | varchar(250) | YES |
| type_id | smallint(6) | YES |
| status | tinyint(4) | YES |
| cleaner | varchar(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