wp_staff

Static

Stores staff data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
namevarchar(100)YES
descriptiontextYES
emailvarchar(100)YES
phonevarchar(45)YES
countryvarchar(255)YES
start_timetimeYES
end_timetimeYES
interval_timeint(11)YES
interval_setvarchar(1000)YES
imageint(11)NO

CREATE TABLE Statement

CREATE TABLE wp_staff ( id int(11) NOT NULL AUTO_INCREMENT, name varchar(100) DEFAULT NULL, description text, email varchar(100) DEFAULT NULL, phone varchar(45) DEFAULT NULL, country varchar(255) DEFAULT NULL, start_time time DEFAULT NULL, end_time time DEFAULT NULL, interval_time int(11) DEFAULT NULL, interval_set varchar(1000) DEFAULT NULL, image int(11) NOT NULL, PRIMARY KEY (id) ) $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_staff`;

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

Other tables from Wp Appointments