mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 10:51:36 +00:00
22 lines
460 B
PHP
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
|
|
{
|
|
//
|
|
}
|
|
};
|