wp_ec_location_to_product

Static

Stores product records and related data.

Column Definitions

ColumnTypeNullable
🔑location_product_idint(11)NO
location_idint(11)NO
product_idint(11)NO

CREATE TABLE Statement

CREATE TABLE ec_location_to_product ( location_product_id int(11) NOT NULL AUTO_INCREMENT, location_id int(11) NOT NULL DEFAULT 0, product_id int(11) NOT NULL DEFAULT 0, PRIMARY KEY (location_product_id), UNIQUE KEY location_product_id (location_product_id), KEY location_id (location_id), KEY product_id (product_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_product`;

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

Other tables from Shopping Cart & eCommerce Store