Added Charts

This commit is contained in:
2026-04-11 23:11:22 +10:00
parent f335951784
commit 0f84ec023e
3 changed files with 25 additions and 1 deletions
@@ -0,0 +1,22 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('user_flights', function (Blueprint $table) {
$table->boolean('auto_update')->default(false)->after('note');
});
}
public function down(): void
{
Schema::table('user_flights', function (Blueprint $table) {
$table->dropColumn('auto_update');
});
}
};