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