mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
traffic fix
drag preview styling
This commit is contained in:
@@ -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');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user