Add db migration, add profile indexes

This commit is contained in:
Daniel Supernault 2022-12-04 23:53:39 -07:00
parent 9f7672f570
commit 3295dfa16e
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,34 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('profiles', function (Blueprint $table) {
$table->index('key_id');
$table->index('remote_url');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('profiles', function (Blueprint $table) {
$table->dropIndex('profiles_key_id_index');
$table->dropIndex('profiles_remote_url_index');
});
}
};