Remove redundant tables and code

This commit is contained in:
Deon George
2021-06-25 13:43:55 +10:00
parent 066154f310
commit bd85f8b055
22 changed files with 44 additions and 857 deletions

View File

@@ -0,0 +1,42 @@
<?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()
{
//
}
}