mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-03 00:34:35 -04:00
Index for project_id
This commit is contained in:
parent
4b0908373c
commit
9ff31e8c48
@ -14,6 +14,11 @@ return new class extends Migration
|
|||||||
Schema::table('invoices', function (Blueprint $table){
|
Schema::table('invoices', function (Blueprint $table){
|
||||||
$table->index(['project_id','deleted_at']);
|
$table->index(['project_id','deleted_at']);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Schema::table('quotes', function (Blueprint $table) {
|
||||||
|
$table->index(['project_id','deleted_at']);
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user