We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b63ddfc commit 465951fCopy full SHA for 465951f
database/migrations/2025_01_25_193815_drop_telescope_tables.php
@@ -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