wp_services
StaticStores services data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| name | varchar(255) | NO |
| description | varchar(1000) | YES |
| duration | int(11) | NO |
| price | decimal(10,0) | YES |
| image | int(11) | NO |
CREATE TABLE Statement
CREATE TABLE wp_services ( id int(11) NOT NULL AUTO_INCREMENT, name varchar(255) NOT NULL, description varchar(1000) DEFAULT NULL, duration int(11) NOT NULL, price decimal(10,0) 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_services`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Wp Appointments