wp_auto_aliexpress_logs

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
camp_idint(11)YES
levelENUM('log','info','warn','error','success')NO
messagetextYES
createdDECIMAL(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.