{"table_name":"mailnest_welcome_queue","full_table_name":"wp_mailnest_welcome_queue","description":"A job queue table for managing background tasks and scheduled operations.","detection_method":"static","confidence":"medium","create_sql":"CREATE TABLE wp_mailnest_welcome_queue ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, subscriber_id BIGINT(20) UNSIGNED NOT NULL, step_index TINYINT(3) UNSIGNED NOT NULL DEFAULT 0, status ENUM('pending','sent','failed','skipped') NOT NULL DEFAULT 'pending', send_at DATETIME NOT NULL, sent_at DATETIME DEFAULT NULL, PRIMARY KEY (id), KEY subscriber_status (subscriber_id, status), KEY send_at_status (send_at, status) ) $charset;\");","columns":[{"name":"id","type":"BIGINT(20) UNSIGNED","nullable":false,"primary_key":true},{"name":"subscriber_id","type":"BIGINT(20) UNSIGNED","nullable":false,"primary_key":false},{"name":"step_index","type":"TINYINT(3) UNSIGNED","nullable":false,"primary_key":false},{"name":"status","type":"ENUM('pending','sent','failed','skipped')","nullable":false,"primary_key":false},{"name":"send_at","type":"DATETIME","nullable":false,"primary_key":false},{"name":"sent_at","type":"DATETIME","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/"}}