wp_amazon_product_types
StaticStores product records and related data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(11) | NO |
| marketplace_id | varchar(25) | NO |
| product_type | varchar(100) | NO |
| display_name | varchar(150) | NO |
| version | varchar(100) | NO |
| property_groups | longtext | NO |
| schema | longtext | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_amazon_product_types` ( `id` bigint(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, `marketplace_id` varchar(25) NOT NULL, `product_type` varchar(100) NOT NULL, `display_name` varchar(150) NOT NULL, `version` varchar(100) NOT NULL, `property_groups` longtext NOT NULL, `schema` longtext NOT NULL );
Safe to delete?
If you have uninstalled WP-Lister Lite for Amazon, 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_amazon_product_types`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-Lister Lite for Amazon