Added updated_at index to pages table

This has a large impact on some areas where latest updated pages are
shown, such as the homepage for example.
This commit is contained in:
Dan Brown 2023-02-23 23:06:12 +00:00
parent 8abb41abbd
commit b88b1bef2c
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9

View File

@ -0,0 +1,32 @@
<?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('pages', function (Blueprint $table) {
$table->index('updated_at', 'pages_updated_at_index');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('pages', function (Blueprint $table) {
$table->dropIndex('pages_updated_at_index');
});
}
};