2022-06-10 10:47:46 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
2022-08-03 10:01:57 +00:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2022-06-10 10:47:46 +00:00
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
|
|
|
return new class extends Migration
|
|
|
|
{
|
|
|
|
public function up(): void
|
|
|
|
{
|
|
|
|
Schema::table('songs', static function (Blueprint $table): void {
|
2022-08-03 10:01:57 +00:00
|
|
|
if (DB::getDriverName() === 'sqlite') {
|
|
|
|
$table->index('title');
|
|
|
|
} else {
|
|
|
|
$table->fullText('title');
|
|
|
|
}
|
|
|
|
|
2022-06-10 10:47:46 +00:00
|
|
|
$table->index(['track', 'disc']);
|
|
|
|
});
|
|
|
|
|
|
|
|
Schema::table('albums', static function (Blueprint $table): void {
|
2022-08-03 10:01:57 +00:00
|
|
|
if (DB::getDriverName() === 'sqlite') {
|
|
|
|
$table->index('name');
|
|
|
|
} else {
|
|
|
|
$table->fullText('name');
|
|
|
|
}
|
2022-06-10 10:47:46 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|