Expand journal meta with soft delete. This pushes Firefly to 4.2.0.

This commit is contained in:
James Cole
2016-11-25 17:42:45 +01:00
parent c049d5cfa6
commit b739859c64
2 changed files with 37 additions and 0 deletions

View File

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