Index for project_id

This commit is contained in:
David Bomba 2024-07-10 14:37:39 +10:00
parent 4b0908373c
commit 9ff31e8c48

View File

@ -14,6 +14,11 @@ return new class extends Migration
Schema::table('invoices', function (Blueprint $table){
$table->index(['project_id','deleted_at']);
});
Schema::table('quotes', function (Blueprint $table) {
$table->index(['project_id','deleted_at']);
});
}
/**