File: /var/www/html/laravel/database/migrations/2025_10_03_114237_add_notam_local_model_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->integer('local_fine_tuning')->default(0);
$table->text('local_output')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};