increments('id'); $table->integer('req_by')->nullable(); $table->integer('req_to')->nullable(); $table->enum('status', ['Pending','Accepted','Rejected'])->nullable(); $table->date('req_date')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('requests'); } }