{"table_name":"queue","full_table_name":"wp_queue","description":"A job queue table for managing background tasks and scheduled operations.","detection_method":"static","confidence":"high","create_sql":"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 );","columns":[{"name":"id","type":"bigint(20)","nullable":false,"primary_key":true},{"name":"job","type":"text","nullable":false,"primary_key":false},{"name":"attempts","type":"tinyint(1)","nullable":false,"primary_key":false},{"name":"locked","type":"tinyint(1)","nullable":false,"primary_key":false},{"name":"locked_at","type":"datetime","nullable":true,"primary_key":false},{"name":"available_at","type":"datetime","nullable":false,"primary_key":false},{"name":"created_at","type":"datetime","nullable":false,"primary_key":false}],"plugin":{"slug":"mailchimp-for-woocommerce","name":"Mailchimp for WooCommerce","active_installs":200000,"version":"6.0.2","wp_org_url":"https://wordpress.org/plugins/mailchimp-for-woocommerce/"}}