increments('id'); $table->integer('profile_id')->nullable(); $table->integer('shortlist_id')->nullable(); $table->enum('shortlist_status', ['true','false'])->nullable(); $table->enum('ignore_status', ['true','false'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('shortlists'); } }