1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2025-01-31 12:01:39 +01:00

Add created_at index to threads table - closes #4069

This commit is contained in:
FreeScout 2024-06-18 02:26:10 -07:00
parent a57a424067
commit 989c729834

View File

@ -0,0 +1,39 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class AddIndexToThreadsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// https://github.com/freescout-help-desk/freescout/issues/4069#issuecomment-2175476858
Schema::table('threads', function (Blueprint $table) {
$table->index(['created_at']);
});
// Schema::table('conversations', function (Blueprint $table) {
// $table->index(['mailbox_id', 'state', 'status'], 'conversations_id_state_status');
// });
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('threads', function (Blueprint $table) {
$table->dropIndex(['created_at']);
});
// Schema::table('conversations', function (Blueprint $table) {
// $table->dropIndex('conversations_id_state_status');
// });
}
}