id(); $table->string('name', 255); $table->text('description'); $table->foreignId('department_id')->constrained('departments'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('projects'); } };