id(); $table->string('name'); $table->string('description'); $table->integer('position'); $table->foreignId('faculty_id')->constrained('faculties'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('departments'); } };