feat(database): add index to updated_at column in v2_order table for better query performance

This commit is contained in:
xboard 2025-01-16 14:26:18 +08:00
parent 296a72331e
commit c895de839a

View File

@ -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('v2_order', function (Blueprint $table) {
$table->index('updated_at');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('v2_order', function (Blueprint $table) {
$table->dropIndex(['updated_at']);
});
}
};