{
"event": "PreToolUse",
"tool_name": "mcp__mcp-db__db_execute",
"tool_input": {
"statement": "CREATE TABLE pipeline_queue (\n id INT AUTO_INCREMENT PRIMARY KEY,\n file_path VARCHAR(1000) NOT NULL,\n action ENUM('new', 'update', 'delete') DEFAULT 'new',\n status ENUM('pending', 'processing', 'completed', 'failed') DEFAULT 'pending',\n pipeline_id INT NULL,\n run_id INT NULL,\n error_message TEXT NULL,\n created_at DATETIME DEFAULT CURRENT_TIMESTAMP,\n started_at DATETIME NULL,\n completed_at DATETIME NULL,\n INDEX idx_status (status),\n INDEX idx_pipeline (pipeline_id)\n)",
"database": "ki_content"
}
}
{
"tool_response": [
{
"type": "text",
"text": "{\n \"status\": \"success\",\n \"affected_rows\": 0,\n \"error\": null,\n \"execution_ms\": 1\n}"
}
]
}