From 7547f79d7c59b3dc23b630b9c994dce7ce53f1b5 Mon Sep 17 00:00:00 2001 From: Nick Douma Date: Thu, 18 Jun 2020 13:52:13 +0200 Subject: [PATCH] Clarify what index to skip --- docs/backends/generic-postgresql.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/backends/generic-postgresql.rst b/docs/backends/generic-postgresql.rst index 15e0b76b94..96cb1723ad 100644 --- a/docs/backends/generic-postgresql.rst +++ b/docs/backends/generic-postgresql.rst @@ -152,7 +152,11 @@ Given the normal pgsql schema, change the following: ); -3. Do not add the recordorder INDEX to the records table, the text_pattern_ops operator class is not supported. +3. Do **not** add the following index to the records table, the text_pattern_ops operator class is not supported: + +.. code-block:: SQL + + CREATE INDEX recordorder ON records (domain_id, ordername text_pattern_ops); Configuration changes -- 2.47.2