wp_amazon_markets

Static

Stores amazon markets data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
developer_idvarchar(32)NO
titlevarchar(255)NO
codevarchar(255)NO
urlvarchar(255)NO
enabledtinyint(2) unsignedNO
sort_orderint(11) unsignedNO
group_titlevarchar(255)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_amazon_markets` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `developer_id` varchar(32) NOT NULL, `title` varchar(255) NOT NULL, `code` varchar(255) NOT NULL, `url` varchar(255) NOT NULL, `enabled` tinyint(2) unsigned NOT NULL DEFAULT '0', `sort_order` int(11) unsigned NOT NULL DEFAULT '0', `group_title` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET

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_markets`;

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

Other tables from WP-Lister Lite for Amazon