<?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()
{
}
};