From 14cdda6071377b97b519d0f8cf5fdf2612a29d67 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Fri, 3 Apr 2026 06:33:56 +0800 Subject: [PATCH] [sanctum] Update: laravel 8 to 12, php 7.3 to php 8.3, Jenkinsfile, Unit/Feature testing, vapor, docker --- ...25_12_25_184804_make_owner_nullable_in_key_value_pairs.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/migrations/2025_12_25_184804_make_owner_nullable_in_key_value_pairs.php b/database/migrations/2025_12_25_184804_make_owner_nullable_in_key_value_pairs.php index 6149bf30..195ed7ed 100644 --- a/database/migrations/2025_12_25_184804_make_owner_nullable_in_key_value_pairs.php +++ b/database/migrations/2025_12_25_184804_make_owner_nullable_in_key_value_pairs.php @@ -4,7 +4,7 @@ use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; -class MakeOwnerNullableInKeyValuePairs extends Migration +return new class extends Migration { /** * Run the migrations. @@ -31,4 +31,4 @@ class MakeOwnerNullableInKeyValuePairs extends Migration $table->unsignedBigInteger('owner_id')->nullable(false)->change(); }); } -} +};