43 lines
915 B
PHP
43 lines
915 B
PHP
|
<?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()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
}
|