Просмотр файла database/upgrades/2025_05_06_232355_delete_indexes_from_articles.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('articles', function (Blueprint $table) {
$table->dropFullText('articles_title_text_fulltext');
});
}
public function down(): void
{
Schema::table('articles', function (Blueprint $table) {
$table->fulltext(['title', 'text']);
});
}
};