From b0c0c8b9fa4013be5d52b524c995b89f7db101a0 Mon Sep 17 00:00:00 2001 From: Edward Yang Date: Fri, 11 Nov 2022 11:10:14 +0800 Subject: [PATCH] add comment for failed jobs --- .../migrations/2019_08_19_000000_create_failed_jobs_table.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php index f336fe75..2178b191 100644 --- a/database/migrations/2019_08_19_000000_create_failed_jobs_table.php +++ b/database/migrations/2019_08_19_000000_create_failed_jobs_table.php @@ -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('链接');