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