string('uuid')->after('id')->nullable()->unique(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('failed_jobs', function (Blueprint $table) { $table->dropColumn('uuid'); }); } }