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