increments('id'); $table->integer('employee_id')->nullable(); $table->integer('payroll_id')->nullable(); $table->date('payment_date')->nullable(); $table->string('type', 100)->nullable(); $table->decimal('amount', 10,2)->nullable(); $table->string('status', 100)->nullable(); $table->text('notes')->nullable(); $table->text('documents')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('adjustments'); } }