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