increments('id'); $table->string('service', 255)->nullable(); $table->enum('status', ['Active','Inactive'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('landlord_tasks'); } }