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(
'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');
}
);