wp_appointments
StaticStores appointments data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| location | int(11) | NO |
| service | int(11) | NO |
| worker | int(11) | NO |
| name | varchar(255) | YES |
| varchar(255) | YES | |
| phone | varchar(45) | YES |
| date | date | YES |
| slot | varchar(45) | YES |
| status | varchar(45) | YES |
| created | timestamp | YES |
| price | decimal(10, 0) | YES |
| ip | varchar(45) | YES |
CREATE TABLE Statement
CREATE TABLE wp_appointments ( id int(11) NOT NULL AUTO_INCREMENT, location int(11) NOT NULL, service int(11) NOT NULL, worker int(11) NOT NULL, name varchar(255) DEFAULT NULL, email varchar(255) DEFAULT NULL, phone varchar(45) DEFAULT NULL, date date DEFAULT NULL, slot varchar(45) DEFAULT NULL, status varchar(45) DEFAULT NULL, created timestamp NULL DEFAULT CURRENT_TIMESTAMP, price decimal(10, 0) DEFAULT NULL, ip varchar(45) DEFAULT NULL, PRIMARY KEY (id), KEY appointments_location (location), KEY appointments_service (service), KEY appointments_worker (worker) ) $charset_collate" );
Safe to delete?
If you have uninstalled Wp Appointments, 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_appointments`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Wp Appointments