diff --git a/database/migrations/2025_01_25_193815_drop_telescope_tables.php b/database/migrations/2025_01_25_193815_drop_telescope_tables.php new file mode 100644 index 0000000..029d864 --- /dev/null +++ b/database/migrations/2025_01_25_193815_drop_telescope_tables.php @@ -0,0 +1,21 @@ +getConnection()); + + $schema->dropIfExists('telescope_entries_tags'); + $schema->dropIfExists('telescope_entries'); + $schema->dropIfExists('telescope_monitoring'); + } + + public function down(): void + { + // + } +};