pixelfed/database/migrations/2022_01_08_103817_add_index_to_followers_table.php
Daniel Supernault f32eabdf19
Add migration
2023-05-25 00:01:50 -06:00

34 lines
662 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddIndexToFollowersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('followers', function (Blueprint $table) {
$table->index('profile_id');
$table->index('following_id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('followers', function (Blueprint $table) {
//
});
}
}