1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Add indexes to DB

This commit is contained in:
David Bomba 2022-09-01 20:27:03 +10:00
parent 43718dc139
commit 8f926f6308

View File

@ -14,8 +14,22 @@ return new class extends Migration
public function up()
{
Schema::table('payments', function (Blueprint $table) {
$table->string('transaction_reference')->nullable()->index()->change();
$table->index(['transaction_reference']);
});
Schema::table('paymentables', function (Blueprint $table) {
$table->index(['paymentable_id']);
});
Schema::table('invoices', function (Blueprint $table) {
$table->index(['recurring_id']);
$table->index(['status_id','balance']);
});
Schema::table('quotes', function (Blueprint $table) {
$table->index(['company_id','updated_at']);
});
}
/**