diff --git a/database/migrations/2019_12_12_131400_AlterJobsDropReserved.php b/database/migrations/2019_12_12_131400_AlterJobsDropReserved.php index 19395cac..903d2df1 100644 --- a/database/migrations/2019_12_12_131400_AlterJobsDropReserved.php +++ b/database/migrations/2019_12_12_131400_AlterJobsDropReserved.php @@ -35,7 +35,7 @@ class AlterJobsDropReserved extends Migration public function down() { Schema::table('jobs', function (Blueprint $table) { - $table->tinyInteger('reserved')->unsigned()->after('attempts'); + $table->tinyInteger('reserved')->unsigned()->default(0)->after('attempts'); }); } }