File: /var/www/html/laravel/database/migrations/2024_08_23_132557_prompt_examples_field.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('prompts', function (Blueprint $table) {
$table->text('example_ids')->nullable();
});
DB::statement("INSERT INTO notams (created_at, comments, input, output, correct_response, is_valid, chatgpt_response) SELECT NOW(), 'Заготовленый пример', input, output, output, 1, '' FROM notam_examples");
Schema::dropIfExists('notam_examples');
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};