id(); $table->string('name'); $table->text('description')->nullable(); $table->integer('position'); $table->string('slug'); $table->foreignId('faculty_id')->constrained('faculties'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('departments'); } };