added migration to drop wormhole tables

This commit is contained in:
2020-08-07 11:19:37 -05:00
parent c888741aef
commit 910e32809f
3 changed files with 29 additions and 16 deletions

View File

@@ -0,0 +1,29 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class RemoveWormholeTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::dropIfExists('alliance_wormholes');
Schema::dropIfExists('wormhole_types');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}