Remove Deprecated PHPDoc comment & AuditLog Model (#997)

* Remove missleading deprecation, you cant use can/cannot on apikeys

* Remove unused `AuditLog` Model
This commit is contained in:
MartinOscar
2025-02-11 19:25:36 +01:00
committed by GitHub
parent d48cf6b722
commit a6963ad802
4 changed files with 23 additions and 90 deletions

View File

@@ -0,0 +1,23 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::dropIfExists('audit_logs');
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Not needed
}
};