Remove redundant tables and code
This commit is contained in:
42
database/migrations/2021_12_24_101812_drop_node.php
Normal file
42
database/migrations/2021_12_24_101812_drop_node.php
Normal 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()
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user