wp_ebay_profiles

Static

Stores ebay profiles data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑profile_idint(11) unsignedNO
profile_namevarchar(255)YES
profile_descriptionvarchar(255)YES
listing_durationvarchar(255)YES
typevarchar(255)YES
detailstextYES
conditionstextYES

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