. */ declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Support\Facades\Schema; /** * Class DropTeleTable */ class DropTeleTable extends Migration { /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('telemetry'); } /** * Run the migrations. * * @return void */ public function up() { Schema::dropIfExists('telemetry'); } }