wp_amazon_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| timestamp | datetime | YES |
| request_url | text | YES |
| request | text | YES |
| response | text | YES |
| result | text | YES |
| callname | varchar(64) | YES |
| success | varchar(16) | YES |
| amazon_id | bigint(255) | YES |
| user_id | int(11) | YES |
| curl | text | YES |
| parameters | text | YES |
| account_id | int(11) | YES |
| market_id | int(11) | YES |
| http_code | varchar(11) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_amazon_log` ( `id` int(11) NOT NULL AUTO_INCREMENT, `timestamp` datetime DEFAULT NULL, `request_url` text, `request` text, `response` text, `result` text, `callname` varchar(64) DEFAULT NULL, `success` varchar(16) DEFAULT NULL, `amazon_id` bigint(255) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `curl` text, `parameters` text, `account_id` int(11) DEFAULT NULL, `market_id` int(11) DEFAULT NULL, `http_code` varchar(11) DEFAULT 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_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-Lister Lite for Amazon