wp_adv_dem_batches
StaticStores adv dem batches data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| batch_Type | VARCHAR(255) | NO |
| batch_Id | VARCHAR(255) | NO |
| batch_Status | VARCHAR(255) | NO |
| batch_Operations | INT | NO |
| batch_Result | TEXT | YES |
| batch_Start_Time | TIMESTAMP | YES |
| batch_Finish_Time | TIMESTAMP | YES |
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