addSql( "UPDATE app.prompt_templates SET body = :body WHERE key = 'specs_research'", ['body' => $body], ); } public function down(Schema $schema): void { $body = <<<'PROMPT' List all known technical specifications for the {{articleType}}: "{{subject}}". Include: processor, RAM, storage variants, display size and resolution, GPU, battery capacity, ports, connectivity, weight, dimensions, OS, and any other relevant specs. If you know this device, be specific and complete. If it is unknown, say so explicitly. PROMPT; $this->addSql( "UPDATE app.prompt_templates SET body = :body WHERE key = 'specs_research'", ['body' => $body], ); } }