Usuń 'database/migrations/2019_12_28_165307_add_softDelete_to_vehicles_table.php'

This commit is contained in:
Krzysztof Strzelecki 2020-01-31 02:01:44 +00:00
parent c29852fa09
commit cea8fbc7dc
1 changed files with 0 additions and 33 deletions

View File

@ -1,33 +0,0 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddSoftDeleteToVehiclesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('vehicles', function (Blueprint $table) {
//
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('vehicles', function (Blueprint $table) {
//
});
}
}