unsignedInteger('id', true)->comment('고유번호'); $table->string('queue', 255)->comment('queue'); $table->longText('payload')->comment('payload'); $table->unsignedTinyInteger('attempts')->comment('시도횟수'); $table->unsignedInteger('reserved_at')->nullable()->comment('예약일'); $table->unsignedInteger('available_at')->nullable()->comment('가능일'); $table->unsignedInteger('created_at')->nullable()->comment('등록일'); // 인덱스 $table->index('queue', 'ik_tbl__jobs_queue'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('jobs'); } }