vito/database/migrations/2025_01_25_193815_drop_telescope_tables.php
2025-01-25 20:56:16 +01:00

22 lines
460 B
PHP

<?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
{
//
}
};