Skip to content

Commit bc0d0fd

Browse files
committed
Fix failing migrations
1 parent 3aa6e4e commit bc0d0fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

database/migrations/2016_02_27_163411_add_tasks_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ public function up()
2323
$table->string('day_of_month')->default('*');
2424
$table->string('hour')->default('*');
2525
$table->string('minute')->default('*');
26-
$table->timestamp('last_run');
27-
$table->timestamp('next_run');
26+
$table->timestamp('last_run')->nullable();
27+
$table->timestamp('next_run')->nullable();
2828
$table->timestamps();
2929
});
3030
}

0 commit comments

Comments
 (0)