{"table_name":"mailnest_queue","full_table_name":"wp_mailnest_queue","description":"A job queue table for managing background tasks and scheduled operations.","detection_method":"static","confidence":"high","create_sql":"CREATE TABLE wp_mailnest_queue ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, campaign_id BIGINT(20) UNSIGNED NOT NULL, subscriber_id BIGINT(20) UNSIGNED NOT NULL, status ENUM('pending','sent','failed') NOT NULL DEFAULT 'pending', sent_at DATETIME DEFAULT NULL, error_msg TEXT DEFAULT NULL, PRIMARY KEY (id), KEY campaign_status (campaign_id, status) ) $charset;\" );","columns":[{"name":"id","type":"BIGINT(20) UNSIGNED","nullable":false,"primary_key":true},{"name":"campaign_id","type":"BIGINT(20) UNSIGNED","nullable":false,"primary_key":false},{"name":"subscriber_id","type":"BIGINT(20) UNSIGNED","nullable":false,"primary_key":false},{"name":"status","type":"ENUM('pending','sent','failed')","nullable":false,"primary_key":false},{"name":"sent_at","type":"DATETIME","nullable":true,"primary_key":false},{"name":"error_msg","type":"TEXT","nullable":true,"primary_key":false}],"plugin":{"slug":"mailnest","name":"MailNest","active_installs":0,"version":"1.0.5","wp_org_url":"https://wordpress.org/plugins/mailnest/"}}