Purge activity log of report template data
This commit is contained in:
parent
cb5b0bd89c
commit
e8ee218f39
1 changed files with 26 additions and 0 deletions
|
@ -0,0 +1,26 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
use App\Models\ReportTemplate;
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
|
||||||
|
return new class extends Migration {
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
DB::table("action_logs")
|
||||||
|
->where("item_type", ReportTemplate::class)
|
||||||
|
->whereIn("action_type", ["create", "update", "delete"])
|
||||||
|
->delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
// nothing to do here...
|
||||||
|
}
|
||||||
|
};
|
Loading…
Add table
Reference in a new issue