From b88b1bef2c0cf74627c5122b656dfabc2d5f23ee Mon Sep 17 00:00:00 2001
From: Dan Brown <ssddanbrown@googlemail.com>
Date: Thu, 23 Feb 2023 23:06:12 +0000
Subject: [PATCH] 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.
---
 ...3_200227_add_updated_at_index_to_pages.php | 32 +++++++++++++++++++
 1 file changed, 32 insertions(+)
 create mode 100644 database/migrations/2023_02_23_200227_add_updated_at_index_to_pages.php

diff --git a/database/migrations/2023_02_23_200227_add_updated_at_index_to_pages.php b/database/migrations/2023_02_23_200227_add_updated_at_index_to_pages.php
new file mode 100644
index 000000000..115bbb0c0
--- /dev/null
+++ b/database/migrations/2023_02_23_200227_add_updated_at_index_to_pages.php
@@ -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');
+        });
+    }
+};