From 755c7066056d3202654ff7ebb33060105a3a1204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=A7=E8=84=9A=E6=9D=BF?= <961510893@qq.com> Date: Mon, 7 Feb 2022 06:17:21 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E5=85=A5=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E6=97=A5=E5=BF=97reason=E5=AD=97=E6=AE=B5=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E4=B8=BAtext?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2022_01_07_110151_create_import_job_logs_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2022_01_07_110151_create_import_job_logs_table.php b/database/migrations/2022_01_07_110151_create_import_job_logs_table.php index e396f438..e2c4a59c 100644 --- a/database/migrations/2022_01_07_110151_create_import_job_logs_table.php +++ b/database/migrations/2022_01_07_110151_create_import_job_logs_table.php @@ -18,7 +18,7 @@ class CreateImportJobLogsTable extends Migration $table->unsignedBigInteger('job_id')->comment('任务ID'); $table->unsignedInteger('row')->default(0)->comment('行数'); $table->unsignedTinyInteger('status')->default(0)->comment('状态1成功'); - $table->string('reason')->nullable()->comment('原因'); + $table->text('reason')->nullable()->comment('原因'); $table->timestamps(); }); }