increments('id'); $table->integer('delivery_type')->nullable(); $table->string('state', 255)->nullable(); $table->string('region', 255)->nullable(); $table->string('post_code', 60)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('parcels'); } }