Skip to content

Commit 465951f

Browse files
authored
drop telescope tables (#442)
1 parent b63ddfc commit 465951f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Support\Facades\Schema;
5+
6+
return new class extends Migration
7+
{
8+
public function up(): void
9+
{
10+
$schema = Schema::connection($this->getConnection());
11+
12+
$schema->dropIfExists('telescope_entries_tags');
13+
$schema->dropIfExists('telescope_entries');
14+
$schema->dropIfExists('telescope_monitoring');
15+
}
16+
17+
public function down(): void
18+
{
19+
//
20+
}
21+
};

0 commit comments

Comments
 (0)