Re-Add the old migration as an 'empty migration' just for safety

This commit is contained in:
Brady Wetherington
2026-04-09 20:10:02 +01:00
parent 95c7d5eeff
commit 8113ddb2d5
@@ -0,0 +1,25 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Artisan;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
//
//Artisan::call('snipeit:clean-checkout-acceptances');
// Commenting this out to prevent crashing due to a missing deleted_at clause
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};