increments('id'); $table->string('name', 50)->nullable(); $table->float('origin_kg_fee')->nullable(); $table->float('exchange_rate')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('warehouses'); } }