From f01bbefc1f454a07de7a038323e45804b4a0212a Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 22 Jun 2015 21:45:32 +0200 Subject: [PATCH] Fixed tests. --- .../migrations/2015_06_22_192411_changes_for_v3451.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/database/migrations/2015_06_22_192411_changes_for_v3451.php b/database/migrations/2015_06_22_192411_changes_for_v3451.php index d2fa94c558..8d23a373a2 100644 --- a/database/migrations/2015_06_22_192411_changes_for_v3451.php +++ b/database/migrations/2015_06_22_192411_changes_for_v3451.php @@ -35,8 +35,8 @@ class ChangesForV3451 extends Migration Schema::table( 'piggy_banks', function (Blueprint $table) { - $table->smallInteger('reminder_skip')->unsigned(); - $table->boolean('remind_me'); + //$table->smallInteger('reminder_skip')->unsigned(); + //$table->boolean('remind_me'); $table->enum('reminder', ['day', 'week', 'quarter', 'month', 'year'])->nullable(); } ); @@ -52,8 +52,8 @@ class ChangesForV3451 extends Migration { Schema::table( 'piggy_banks', function (Blueprint $table) { - $table->dropColumn('reminder_skip'); - $table->dropColumn('remind_me'); + //$table->dropColumn('reminder_skip'); + //$table->dropColumn('remind_me'); $table->dropColumn('reminder'); } );