wp_connections

Static

Stores connections data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
locationint(11)NO
workervarchar(255)NO
servicevarchar(255)NO
date_startdateYES
date_enddateYES
week_of_daysvarchar(60)YES

CREATE TABLE Statement

CREATE TABLE wp_connections ( id int(11) NOT NULL AUTO_INCREMENT, location int(11) NOT NULL, worker varchar(255) NOT NULL, service varchar(255) NOT NULL, date_start date DEFAULT NULL, date_end date DEFAULT NULL, week_of_days varchar(60) DEFAULT NULL, PRIMARY KEY (id), KEY location_to_connection (location), KEY worker_to_connection (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_connections`;

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

Other tables from Wp Appointments