clrghouz/database/migrations/2021_12_24_101812_drop_node.php

43 lines
915 B
PHP
Raw Normal View History

2021-06-25 03:43:55 +00:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class DropNode extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::dropIfExists('echomail_kludge');
Schema::dropIfExists('echomail_path');
Schema::dropIfExists('echomail_seenby');
Schema::dropIfExists('kludge_netmail');
Schema::dropIfExists('netmail_path');
Schema::dropIfExists('flag_node');
Schema::dropIfExists('kludges');
Schema::dropIfExists('paths');
Schema::dropIfExists('seenbys');
Schema::dropIfExists('flags');
Schema::dropIfExists('echomails');
Schema::dropIfExists('netmails');
Schema::dropIfExists('node_setup');
Schema::dropIfExists('node_system');
Schema::dropIfExists('nodes');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}