mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-02 20:25:28 +00:00
Some new code for CSV.
This commit is contained in:
36
database/migrations/2016_04_08_181054_changes_for_v383.php
Normal file
36
database/migrations/2016_04_08_181054_changes_for_v383.php
Normal 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();
|
||||
}
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user