1
0
Fork 0
pixelfed/database/migrations/2023_06_28_103008_add_user_...

31 lines
772 B
PHP

<?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('profiles', function (Blueprint $table) {
$table->index('user_id', 'profiles_user_id_index');
$table->index('last_fetched_at', 'profiles_last_fetched_at_index');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('profiles', function (Blueprint $table) {
$table->dropIndex('profiles_user_id_index');
$table->dropIndex('profiles_last_fetched_at_index');
});
}
};