bigInteger('id', true)->unsigned(); $table->string('queue')->index(); $table->text('payload', 65535); $table->boolean('attempts'); $table->integer('reserved_at')->unsigned()->nullable(); $table->integer('available_at')->unsigned(); $table->integer('created_at')->unsigned(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('jobs'); } }