add shop cart storage

This commit is contained in:
ludo
2024-02-07 21:54:58 +01:00
parent 53448d7907
commit b0b87db86d
2 changed files with 38 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCartStorageTable extends Migration
return new class extends Migration
{
/**
* Run the migrations.
@@ -31,4 +31,4 @@ class CreateCartStorageTable extends Migration
{
Schema::dropIfExists('shop_baskets');
}
}
};