wp_amazon_profiles
StaticStores amazon profiles data created by this plugin.
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_amazon_profiles` ( // `profile_id` int(11) unsigned NOT NULL AUTO_INCREMENT, // `profile_name` varchar(255) DEFAULT NULL, // `profile_description` varchar(255) DEFAULT NULL, // `listing_duration` varchar(255) DEFAULT NULL, // `type` varchar(255) DEFAULT NULL, // `details` text, // `conditions` text, // PRIMARY KEY (`profile_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_profiles`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-Lister Lite for Amazon