We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aa6e4e commit bc0d0fdCopy full SHA for bc0d0fd
database/migrations/2016_02_27_163411_add_tasks_table.php
@@ -23,8 +23,8 @@ public function up()
23
$table->string('day_of_month')->default('*');
24
$table->string('hour')->default('*');
25
$table->string('minute')->default('*');
26
- $table->timestamp('last_run');
27
- $table->timestamp('next_run');
+ $table->timestamp('last_run')->nullable();
+ $table->timestamp('next_run')->nullable();
28
$table->timestamps();
29
});
30
}
0 commit comments