wp_services

Static

Stores services data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
namevarchar(255)NO
descriptionvarchar(1000)YES
durationint(11)NO
pricedecimal(10,0)YES
imageint(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