wp_ebay_profiles
StaticStores ebay profiles data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑profile_id | int(11) unsigned | NO |
| profile_name | varchar(255) | YES |
| profile_description | varchar(255) | YES |
| listing_duration | varchar(255) | YES |
| type | varchar(255) | YES |
| details | text | YES |
| conditions | text | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_ebay_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`) );
Safe to delete?
If you have uninstalled WP-Lister Lite for eBay, 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_ebay_profiles`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from WP-Lister Lite for eBay