id(); $table->unsignedBigInteger('computer_id'); $table->foreign('computer_id')->references('id')->on('computers'); $table->string('description', length: 256); $table->boolean('status')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('jobs'); } };