dbfdg bigIncrements('id'); $table->integer('employee_id')->default(0); $table->integer('branch_id')->default(0); $table->integer('department_id')->default(0); $table->date('transfer_date'); $table->string('description')->nullable(); $table->string('created_by'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('transfers'); } }