increments('id'); $table->integer('country')->nullable(); $table->decimal('min', 50)->nullable(); $table->integer('max')->nullable(); $table->decimal('shipping_rate', 50)->nullable(); $table->integer('fast_delivery')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('shipping_totals'); } }