File: /var/www/html/laravel/database/migrations/2025_02_07_112709_new_response_format_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('notams', function (Blueprint $table) {
$table->text('new_output')->nullable();
$table->text('new_correct_response')->nullable();
$table->integer('new_match_percent')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};