修改导入错误日志reason字段类型为text
parent
8d400b204e
commit
755c706605
|
|
@ -18,7 +18,7 @@ class CreateImportJobLogsTable extends Migration
|
||||||
$table->unsignedBigInteger('job_id')->comment('任务ID');
|
$table->unsignedBigInteger('job_id')->comment('任务ID');
|
||||||
$table->unsignedInteger('row')->default(0)->comment('行数');
|
$table->unsignedInteger('row')->default(0)->comment('行数');
|
||||||
$table->unsignedTinyInteger('status')->default(0)->comment('状态1成功');
|
$table->unsignedTinyInteger('status')->default(0)->comment('状态1成功');
|
||||||
$table->string('reason')->nullable()->comment('原因');
|
$table->text('reason')->nullable()->comment('原因');
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue