Some new code for CSV.

This commit is contained in:
James Cole
2016-04-08 20:36:11 +02:00
parent ddb28b78c3
commit 5ed53d5f04
3 changed files with 60 additions and 2 deletions

View File

@@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
/**
* Class ChangesForV383
*/
class ChangesForV383 extends Migration
{
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// extend journal meta
Schema::table(
'journal_meta', function (Blueprint $table) {
$table->string('hash', 64)->nullable();
}
);
}
}