wp_ec_location_to_schedule

Static

Stores ec location to schedule data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑location_schedule_idint(11)NO
location_idint(11)NO
schedule_idint(11)NO

CREATE TABLE Statement

CREATE TABLE ec_location_to_schedule ( location_schedule_id int(11) NOT NULL AUTO_INCREMENT, location_id int(11) NOT NULL DEFAULT 0, schedule_id int(11) NOT NULL DEFAULT 0, PRIMARY KEY (location_schedule_id), UNIQUE KEY location_schedule_id (location_schedule_id), KEY location_id (location_id), KEY product_id (schedule_id) ) $collate;" );

Safe to delete?

If you have uninstalled Shopping Cart & eCommerce Store, 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_ec_location_to_schedule`;

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

Other tables from Shopping Cart & eCommerce Store