wp_amazon_markets
StaticStores amazon markets data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| developer_id | varchar(32) | NO |
| title | varchar(255) | NO |
| code | varchar(255) | NO |
| url | varchar(255) | NO |
| enabled | tinyint(2) unsigned | NO |
| sort_order | int(11) unsigned | NO |
| group_title | varchar(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