drop telescope tables (#442)

This commit is contained in:
Saeed Vaziry 2025-01-25 20:56:16 +01:00 committed by GitHub
parent b63ddfc568
commit 465951fd1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,21 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
$schema = Schema::connection($this->getConnection());
$schema->dropIfExists('telescope_entries_tags');
$schema->dropIfExists('telescope_entries');
$schema->dropIfExists('telescope_monitoring');
}
public function down(): void
{
//
}
};