From 4c82c453248776b69a303922ae1f289128d5b343 Mon Sep 17 00:00:00 2001 From: gzydong <837215079@qq.com> Date: Thu, 5 May 2022 21:04:07 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E8=BF=81=E7=A7=BB?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- migrations/2020_11_04_153358_create_split_upload_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/2020_11_04_153358_create_split_upload_table.php b/migrations/2020_11_04_153358_create_split_upload_table.php index 91c230e..74cf4df 100644 --- a/migrations/2020_11_04_153358_create_split_upload_table.php +++ b/migrations/2020_11_04_153358_create_split_upload_table.php @@ -16,7 +16,7 @@ class CreateSplitUploadTable extends Migration $table->unsignedTinyInteger('type')->default(2)->comment('数据类型[1:合并文件;2:拆分文件]'); $table->unsignedInteger('drive')->unsigned()->default(1)->comment('文件驱动[1:local;2:cos;]'); $table->unsignedInteger('user_id')->default(0)->comment('上传的用户ID'); - $table->string('upload_id', 32)->default('')->comment('上传文件ID'); + $table->string('upload_id', 100)->default('')->comment('上传文件ID'); $table->string('original_name', 100)->default('')->comment('原文件名'); $table->unsignedTinyInteger('split_index')->default(0)->comment('当前索引块'); $table->unsignedTinyInteger('split_num')->default(0)->comment('总上传索引块');