wp_staff
StaticStores staff data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| name | varchar(100) | YES |
| description | text | YES |
| varchar(100) | YES | |
| phone | varchar(45) | YES |
| country | varchar(255) | YES |
| start_time | time | YES |
| end_time | time | YES |
| interval_time | int(11) | YES |
| interval_set | varchar(1000) | YES |
| image | int(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