pixelfed/database/migrations/2024_05_31_090555_update_instances_table_add_index_to_nodeinfo_last_fetched_at.php

37 lines
1.1 KiB
PHP
Raw Normal View History

2024-05-31 09:17:54 +00:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('instances', function (Blueprint $table) {
2024-07-01 08:39:42 +00:00
$indexes = Schema::getIndexes('instances');
$indexesFound = collect($indexes)->map(function($i) { return $i['name']; })->toArray();
if (!in_array('instances_nodeinfo_last_fetched_index', $indexesFound)) {
2024-05-31 09:17:54 +00:00
$table->index('nodeinfo_last_fetched');
}
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('instances', function (Blueprint $table) {
2024-07-01 08:39:42 +00:00
$indexes = Schema::getIndexes('instances');
$indexesFound = collect($indexes)->map(function($i) { return $i['name']; })->toArray();
if (in_array('instances_nodeinfo_last_fetched_index', $indexesFound)) {
2024-05-31 09:17:54 +00:00
$table->dropIndex('instances_nodeinfo_last_fetched_index');
}
});
}
};