increments('id'); $table->integer('pincode')->nullable(); $table->integer('shipping_method_id')->nullable(); $table->string('country_code', 5)->nullable(); $table->string('state_code', 5)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('pincodes'); } }