id('department_id'); $table->string('name_full'); $table->string('name_short')->nullable(); $table->unsignedBigInteger('rf_mis_department_id')->nullable(); $table->foreignIdFor(\App\Models\DepartmentType::class, 'rf_department_type')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('departments'); } };