File: /var/www/html/laravel/database/migrations/2025_11_26_085205_extend_local_responses_params.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('local_response')->nullable();
$table->text('local_correct_response')->nullable();
$table->integer('local_match_percent')->nullable()->unsigned();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};