wp_mailchimp_jobs

Static

A job queue table for managing background tasks and scheduled operations.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
obj_idtextYES
jobtextNO
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_mailchimp_jobs ( id bigint(20) NOT NULL AUTO_INCREMENT, obj_id text, job text NOT NULL, created_at datetime NOT NULL, PRIMARY KEY (id) ) $charset_collate;"; dbDelta( $sql );

Safe to delete?

If you have uninstalled Mailchimp for WooCommerce, 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_mailchimp_jobs`;

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

Other tables from Mailchimp for WooCommerce