라라벨 artisan queue:failed-table

1 개요[ | ]

artisan queue:table
php artisan queue:table
  • queue jobs 테이블을 위한 마이그레이션을 생성하는 artisan 명령어
root@zetawiki:/var/www/laravel# php artisan queue:failed-table
Migration created successfully!
root@zetawiki:/var/www/laravel# php artisan migrate:status
+------+--------------------------------------------+
| Ran? | Migration                                  |
+------+--------------------------------------------+
| Y    | 2018_02_04_200457_create_jobs_table        |
| N    | 2018_02_05_192005_create_failed_jobs_table |
+------+--------------------------------------------+

2 (Optional) 확인[ | ]

root@zetawiki:/var/www/laravel# ll database/migrations/ | grep failed
-rw-r--r-- 1 root   root      789 Feb  5 19:20 2018_02_05_192005_create_failed_jobs_table.php
root@zetawiki:/var/www/laravel# cat database/migrations/2018_02_05_192005_create_failed_jobs_table.php
<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateFailedJobsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('failed_jobs', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->text('connection');
            $table->text('queue');
            $table->longText('payload');
            $table->longText('exception');
            $table->timestamp('failed_at')->useCurrent();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('failed_jobs');
    }
}

3 artisan migrate[ | ]

root@zetawiki:/var/www/laravel# php artisan migrate
Migrating: 2018_02_05_192005_create_failed_jobs_table
Migrated:  2018_02_05_192005_create_failed_jobs_table

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}