Added sockets for notifications

This commit is contained in:
2026-06-30 21:42:51 +10:00
parent 6cadd3d9e6
commit 6978510147
7 changed files with 62 additions and 17 deletions
@@ -0,0 +1,27 @@
<?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('user_flights', function (Blueprint $table) {
$table->timestamp('departure_processed_at')->nullable()->after('departure_date');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};