mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-09 09:46:14 +00:00
32 lines
679 B
PHP
32 lines
679 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class AddUuidsToFailedJobsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::table('failed_jobs', function (Blueprint $table) {
|
|
$table->string('uuid')->after('id')->nullable()->unique();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::table('failed_jobs', function (Blueprint $table) {
|
|
$table->dropColumn('uuid');
|
|
});
|
|
}
|
|
}
|