wp_ec_fee
StaticStores ec fee data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑fee_id | int(11) | NO |
| fee_label | varchar(512) | NO |
| fee_admin_description | text | YES |
| fee_country | text | YES |
| fee_state | text | YES |
| fee_zip | text | YES |
| fee_city | text | YES |
| fee_category | text | YES |
| fee_role | text | YES |
| fee_zone | text | YES |
| fee_type | int(11) | NO |
| fee_rate | float(15,3) | NO |
| fee_price | float(15,3) | NO |
| fee_min | float(15,3) | NO |
| fee_max | float(15,3) | NO |
CREATE TABLE Statement
CREATE TABLE ec_fee ( fee_id int(11) NOT NULL AUTO_INCREMENT, fee_label varchar(512) NOT NULL DEFAULT '', fee_admin_description text, fee_country text, fee_state text, fee_zip text, fee_city text, fee_category text, fee_role text, fee_zone text, fee_type int(11) NOT NULL DEFAULT '1', fee_rate float(15,3) NOT NULL DEFAULT '0.000', fee_price float(15,3) NOT NULL DEFAULT '0.000', fee_min float(15,3) NOT NULL DEFAULT '0.000', fee_max float(15,3) NOT NULL DEFAULT '-1.000', PRIMARY KEY (fee_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_fee`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Shopping Cart & eCommerce Store