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