wp_amazon_feed_tpl_values
StaticStores amazon feed tpl values data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| field | varchar(255) | YES |
| label | varchar(255) | YES |
| type | varchar(255) | YES |
| values | text | YES |
| tpl_id | int(11) | YES |
| site_id | int(11) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_amazon_feed_tpl_values` ( `id` int(11) NOT NULL AUTO_INCREMENT, `field` varchar(255) DEFAULT NULL, `label` varchar(255) DEFAULT NULL, `type` varchar(255) DEFAULT NULL, `values` text DEFAULT NULL, `tpl_id` int(11) DEFAULT NULL, `site_id` int(11) DEFAULT NULL, KEY `id` (`id`), KEY `field` (`field`), KEY `tpl_id` (`tpl_id`), 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_feed_tpl_values`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-Lister Lite for Amazon