drop structures table that isn't needed

This commit is contained in:
2018-12-06 23:39:54 -06:00
parent 8a84559581
commit 13cfa9286f
3 changed files with 34 additions and 2 deletions
@@ -0,0 +1,30 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class DropStructuresTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('Fleets', function($table) {
$table->dropColumn('fleet_end');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}