wp_amazon_product_types

Static

Stores product records and related data.

Column Definitions

ColumnTypeNullable
🔑idbigint(11)NO
marketplace_idvarchar(25)NO
product_typevarchar(100)NO
display_namevarchar(150)NO
versionvarchar(100)NO
property_groupslongtextNO
schemalongtextNO

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