Laravel Vapor - Fix a problem on downloading Wallet Transaction History

This commit is contained in:
Dillon Ngo
2024-11-07 07:16:04 +08:00
parent 92347350cf
commit f11adef938
@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddPaymentReferenceIndexToTransactionsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('transactions', function (Blueprint $table) {
$table->index('payment_reference', 'idx_transactions_payment_reference');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('transactions', function (Blueprint $table) {
$table->dropIndex('idx_transactions_payment_reference');
});
}
}