File: /var/www/html/laravel/database/migrations/2026_03_02_080009_update_table_notam_gpt_requests.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('notam_gpt_requests', function (Blueprint $table) {
$table->integer('is_valid')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
}
};