From dbcae16b753eb304ca50cb47ff8a11d52a45ac12 Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 24 Dec 2014 05:43:08 +0100 Subject: [PATCH] Made two new columns nullable. #37 --- .../migrations/2014_12_13_190730_changes_for_v321.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/database/migrations/2014_12_13_190730_changes_for_v321.php b/app/database/migrations/2014_12_13_190730_changes_for_v321.php index 422e372883..b675ed0e8a 100644 --- a/app/database/migrations/2014_12_13_190730_changes_for_v321.php +++ b/app/database/migrations/2014_12_13_190730_changes_for_v321.php @@ -495,8 +495,8 @@ class ChangesForV321 extends Migration { Schema::table( 'transaction_currencies', function (Blueprint $table) { - $table->string('name', 48); - $table->string('symbol', 4); + $table->string('name', 48)->nullable(); + $table->string('symbol', 4)->nullable(); } ); }