Merge pull request #17415 from uberbrady/clean_unaccepted_assets_report

[FD-47386, FD-49095] New Artisan command to clean checkout acceptances
This commit is contained in:
snipe
2025-07-16 17:34:49 +01:00
committed by GitHub
2 changed files with 94 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
//
Artisan::call("snipeit:clean-checkout-acceptances");
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};