wp_auto_aliexpress_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| camp_id | int(11) | YES |
| level | ENUM('log','info','warn','error','success') | NO |
| message | text | YES |
| created | DECIMAL(16, 6) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_auto_aliexpress_logs` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `camp_id` int(11) DEFAULT NULL, `level` ENUM('log','info','warn','error','success') NOT NULL DEFAULT 'log', `message` text DEFAULT NULL, `created` DECIMAL(16, 6) NOT NULL, PRIMARY KEY (`id`) ) CHARACTER SET utf8 COLLATE utf8_general_ci;", ]; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );Safe to delete?
If you have uninstalled Auto Aliexpress Dropshipping, 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_auto_aliexpress_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.