wp_bookingdates
StaticStores bookingdates data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑booking_dates_id | bigint(20) unsigned | NO |
| booking_id | bigint(20) unsigned | NO |
| booking_date | datetime | NO |
| approved | bigint(20) unsigned | NO |
CREATE TABLE Statement
CREATE TABLE wp_bookingdates ( booking_dates_id bigint(20) unsigned NOT NULL auto_increment, booking_id bigint(20) unsigned NOT NULL, booking_date datetime NOT NULL default '0000-00-00 00:00:00', approved bigint(20) unsigned NOT NULL default 0, PRIMARY KEY (booking_dates_id) ) {$charset_collate}"; // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.NotPrepared, PluginCheck.Security.DirectDB.UnescapedDBParameter $wpdb->query( $simple_sql );Safe to delete?
If you have uninstalled Booking Calendar, 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_bookingdates`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Booking Calendar