6
0
Fork 0

修改导入错误日志reason字段类型为text

release
大脚板 2022-02-07 06:17:21 +00:00 committed by Gitee
parent 8d400b204e
commit 755c706605
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 1 deletions

View File

@ -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();
});
}