wp_appointments

Static

Stores appointments data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
locationint(11)NO
serviceint(11)NO
workerint(11)NO
namevarchar(255)YES
emailvarchar(255)YES
phonevarchar(45)YES
datedateYES
slotvarchar(45)YES
statusvarchar(45)YES
createdtimestampYES
pricedecimal(10, 0)YES
ipvarchar(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