fix: added a new index for invoices

This commit is contained in:
René Aaron
2023-02-16 06:30:35 +01:00
parent 7a01bf6d84
commit 05748cb6a3

View File

@@ -0,0 +1,2 @@
CREATE INDEX CONCURRENTLY IF NOT EXISTS index_invoices_on_id_user_id_type_state
ON invoices (id, user_id, type, state);