Drop Food Amounts table

This commit is contained in:
Christopher C. Wells 2021-02-19 05:57:55 -08:00
parent 4856ed4b70
commit fd45baa946
1 changed files with 27 additions and 0 deletions

View File

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