Fixed tests.

This commit is contained in:
James Cole 2015-06-22 21:45:32 +02:00
parent 1d1eb5ffa8
commit f01bbefc1f

View File

@ -35,8 +35,8 @@ class ChangesForV3451 extends Migration
Schema::table( Schema::table(
'piggy_banks', function (Blueprint $table) { 'piggy_banks', function (Blueprint $table) {
$table->smallInteger('reminder_skip')->unsigned(); //$table->smallInteger('reminder_skip')->unsigned();
$table->boolean('remind_me'); //$table->boolean('remind_me');
$table->enum('reminder', ['day', 'week', 'quarter', 'month', 'year'])->nullable(); $table->enum('reminder', ['day', 'week', 'quarter', 'month', 'year'])->nullable();
} }
); );
@ -52,8 +52,8 @@ class ChangesForV3451 extends Migration
{ {
Schema::table( Schema::table(
'piggy_banks', function (Blueprint $table) { 'piggy_banks', function (Blueprint $table) {
$table->dropColumn('reminder_skip'); //$table->dropColumn('reminder_skip');
$table->dropColumn('remind_me'); //$table->dropColumn('remind_me');
$table->dropColumn('reminder'); $table->dropColumn('reminder');
} }
); );