wp_connections
StaticStores connections data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| location | int(11) | NO |
| worker | varchar(255) | NO |
| service | varchar(255) | NO |
| date_start | date | YES |
| date_end | date | YES |
| week_of_days | varchar(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