pixelfed/database/migrations/2024_06_03_232204_add_url_index_to_statuses_table.php

37 lines
1 KiB
PHP
Raw Normal View History

2024-06-03 23:28:31 +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('statuses', function (Blueprint $table) {
2024-07-01 08:39:42 +00:00
$indexes = Schema::getIndexes('statuses');
$indexesFound = collect($indexes)->map(function($i) { return $i['name']; })->toArray();
if (!in_array('statuses_url_index', $indexesFound)) {
2024-06-03 23:28:31 +00:00
$table->index('url');
}
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('statuses', function (Blueprint $table) {
2024-07-01 08:39:42 +00:00
$indexes = Schema::getIndexes('statuses');
$indexesFound = collect($indexes)->map(function($i) { return $i['name']; })->toArray();
if (in_array('statuses_url_index', $indexesFound)) {
2024-06-03 23:28:31 +00:00
$table->dropIndex('statuses_url_index');
}
});
}
};