fix:quote_revisions 조회 시 MySQL Out of sort memory 에러 해결
- quote_revisions(quote_id, tenant_id, revision_number) 복합 인덱스 추가 - previous_data JSON 대용량 컬럼 포함 정렬 시 filesort OOM 방지 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('quote_revisions', function (Blueprint $table) {
|
||||
$table->index(['quote_id', 'tenant_id', 'revision_number'], 'idx_quote_revisions_quote_tenant_revision');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('quote_revisions', function (Blueprint $table) {
|
||||
$table->dropIndex('idx_quote_revisions_quote_tenant_revision');
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user