File: /var/www/html/laravel/database/migrations/2026_03_31_085205_add_gpt41_fields.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('notams', function (Blueprint $table) {
$table->text('gpt41_response')->nullable();
$table->text('gpt41_correct_response')->nullable();
$table->integer('gpt41_match_percent')->nullable()->unsigned();
$table->integer('gpt41_processing_time')->nullable();
$table->boolean('check_required_gpt41')->default(false);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};