traffic fix

drag preview styling
This commit is contained in:
Peter Papp
2020-11-29 09:39:26 +01:00
parent e86ea3e5c4
commit 1981f39f9e
5 changed files with 16 additions and 13 deletions

View File

@@ -14,6 +14,7 @@ class CreateTrafficTable extends Migration
public function up()
{
Schema::create('traffic', function (Blueprint $table) {
$table->bigIncrements('id');
$table->bigInteger('user_id');
$table->bigInteger('upload')->default(0);
$table->bigInteger('download')->default(0);
@@ -28,6 +29,6 @@ class CreateTrafficTable extends Migration
*/
public function down()
{
Schema::dropIfExists('traffics');
Schema::dropIfExists('traffic');
}
}