add comment for failed jobs

This commit is contained in:
Edward Yang 2022-11-11 11:10:14 +08:00
parent eb1a29d69f
commit b0c0c8b9fa
1 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,8 @@ class CreateFailedJobsTable extends Migration
public function up()
{
Schema::create('failed_jobs', function (Blueprint $table) {
$table->comment('队列失败任务');
$table->id()->comment('主键ID');
$table->string('uuid')->unique()->comment('唯一ID');
$table->text('connection')->comment('链接');