File: /var/www/html/laravel/database/migrations/2026_04_09_104804_notam_geo_validation_error.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->integer('geo_validation_error')->nullable()->default(0);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};