char('id', 8); $table->char('server_id', 8); $table->string('location'); $table->float('send'); $table->char('send_type', 4); $table->float('send_as_mbps'); $table->float('receive'); $table->char('receive_type', 4); $table->float('receive_as_mbps'); $table->timestamps(); $table->unique(['id','server_id', 'location'], 'network_speed_u1'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('network_speed'); } }