bigIncrements('id'); $table->string('queue')->index(); $table->longText('payload'); $table->integer('attempts'); $table->integer('reserved_at')->nullable(); $table->integer('available_at'); $table->integer('created_at'); }); } public function down(): void { Schema::dropIfExists('jobs'); } };