From ad3f6e90779b582a571418c78ca35410904bec33 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 18 May 2021 09:10:22 +0200 Subject: [PATCH] Fix documented index --- doc/admin/indexes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/admin/indexes.rst b/doc/admin/indexes.rst index 6a1823adec..145f19fee3 100644 --- a/doc/admin/indexes.rst +++ b/doc/admin/indexes.rst @@ -46,7 +46,7 @@ Here is the currently recommended set of commands:: ON pretixbase_order USING gin (upper("comment") gin_trgm_ops); CREATE INDEX CONCURRENTLY pretix_addidx_order_event_date - ON public.pretixbase_order (event_id, datetime DESC); + ON public.pretixbase_order (event_id, datetime); CREATE INDEX CONCURRENTLY pretix_addidx_orderpos_name ON pretixbase_orderposition USING gin (upper("attendee_name_cached") gin_trgm_ops);