tinyInteger('transfer_id')->unsigned()->autoIncrement(); $table->unsignedBigInteger('employee_id')->nullable(); $table->unsignedBigInteger('old_department_id')->nullable(); $table->unsignedBigInteger('new_department_id')->nullable(); $table->integer('status')->nullable(); $table->date('transfer_date')->nullable(); $table->mediumText('description')->nullable(); $table->mediumText('remarks')->nullable(); $table->unsignedBigInteger('createdBy')->nullable(); $table->unsignedBigInteger('updatedBy')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tbl_transfers'); } };