Viewing File: /home/markqprx/iniasli.pro/migrations/2023_08_08_103123_add_timestamp_indexes_to_comments_table.php

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('comments', function (Blueprint $table) {
            $sm = Schema::getConnection()->getDoctrineSchemaManager();
            $indexesFound = $sm->listTableIndexes('comments');
            if (!array_key_exists('comments_created_at_index', $indexesFound)) {
                $table->index('created_at');
            }
            if (!array_key_exists('comments_updated_at_index', $indexesFound)) {
                $table->index('updated_at');
            }
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {

    }
};
Back to Directory File Manager