Files
firefly-iii/database/migrations/2021_07_05_193044_drop_tele_table.php
2021-07-05 20:01:36 +02:00

32 lines
498 B
PHP

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