wp_adv_dem_batches

Static

Stores adv dem batches data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTNO
batch_TypeVARCHAR(255)NO
batch_IdVARCHAR(255)NO
batch_StatusVARCHAR(255)NO
batch_OperationsINTNO
batch_ResultTEXTYES
batch_Start_TimeTIMESTAMPYES
batch_Finish_TimeTIMESTAMPYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_adv_dem_batches ( `id` INT NOT NULL AUTO_INCREMENT, `batch_Type` VARCHAR(255) NOT NULL, `batch_Id` VARCHAR(255) NOT NULL, `batch_Status` VARCHAR(255) NOT NULL, `batch_Operations` INT NOT NULL, `batch_Result` TEXT NULL, `batch_Start_Time` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP, `batch_Finish_Time` TIMESTAMP NULL, UNIQUE KEY id (id) )$charset_collate;") );

Safe to delete?

If you have uninstalled Email Marketing Integration Adv, 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_adv_dem_batches`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Email Marketing Integration Adv