Просмотр файла database/upgrades/2025_05_06_232355_delete_indexes_from_articles.php

Размер файла: 531B
<?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']);
        });
    }
};