wp_queue
StaticA job queue table for managing background tasks and scheduled operations.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| job | text | NO |
| attempts | tinyint(1) | NO |
| locked | tinyint(1) | NO |
| locked_at | datetime | YES |
| available_at | datetime | NO |
| created_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_queue ( id bigint(20) NOT NULL AUTO_INCREMENT, job text NOT NULL, attempts tinyint(1) NOT NULL DEFAULT 0, locked tinyint(1) NOT NULL DEFAULT 0, locked_at datetime DEFAULT NULL, available_at datetime 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_queue`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Mailchimp for WooCommerce