increments('id'); $table->enum('status', ['Yes','No'])->nullable(); $table->double('base_charge_per_kg', 8,2)->nullable(); $table->double('base_charge', 8,2)->nullable(); $table->double('additionalcharge_per_kg', 8,2)->nullable(); $table->double('additionalcharge', 8,2)->nullable(); $table->integer('user_id')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('shippings'); } }