koel/database/migrations/2022_06_11_091750_add_indexes.php
2022-07-04 10:36:39 +02:00

20 lines
509 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('songs', static function (Blueprint $table): void {
$table->index('title');
$table->index(['track', 'disc']);
});
Schema::table('albums', static function (Blueprint $table): void {
$table->index('name');
});
}
};