diff --git a/app/database/migrations/2015_01_18_082406_changes_for_325.php b/app/database/migrations/2015_01_18_082406_changes_for_v325.php similarity index 93% rename from app/database/migrations/2015_01_18_082406_changes_for_325.php rename to app/database/migrations/2015_01_18_082406_changes_for_v325.php index 2e4eaa8830..768cbe6aa4 100644 --- a/app/database/migrations/2015_01_18_082406_changes_for_325.php +++ b/app/database/migrations/2015_01_18_082406_changes_for_v325.php @@ -10,7 +10,7 @@ use Illuminate\Database\Schema\Blueprint; * * Class ChangesForV325 */ -class ChangesFor325 extends Migration +class ChangesForV325 extends Migration { /** @@ -52,7 +52,7 @@ class ChangesFor325 extends Migration // allow journal descriptions to be encrypted. Schema::table( 'transaction_journals', function (Blueprint $table) { - $table->boolean('encrypted'); + $table->boolean('encrypted')->default(0); } );