id(); $table->string('parent_dept',100)->nullable(); $table->string('name',100)->nullable(); $table->string('manager_id',100)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('department'); } };