update job migration table to latest version from laravel 7

This commit is contained in:
omair saleh
2020-09-08 14:50:59 +08:00
parent 0d2bf04069
commit 04853d3bb3
@@ -14,12 +14,13 @@ class CreateJobsTable extends Migration
public function up()
{
Schema::create('jobs', function (Blueprint $table) {
$table->id();
$table->bigIncrements('id');
$table->string('queue')->index();
$table->longText('payload');
$table->unsignedTinyInteger('attempts');
$table->unsignedInteger('reserved_at')->nullable();
$table->timestamps();
$table->unsignedInteger('available_at');
$table->unsignedInteger('created_at');
});
}