Refs #26167 -- Corrected OpClass() example in docs.

This commit is contained in:
Hannes Ljungberg 2021-01-24 23:08:14 +01:00 committed by Mariusz Felisiak
parent 84ad7f3404
commit 90ddf46ef7
1 changed files with 4 additions and 1 deletions

View File

@ -190,7 +190,10 @@ available from the ``django.contrib.postgres.indexes`` module.
For example::
Index(OpClass(Lower('username'), name='varchar_pattern_ops'))
Index(
OpClass(Lower('username'), name='varchar_pattern_ops'),
name='lower_username_idx',
)
creates an index on ``Lower('username')`` using ``varchar_pattern_ops``.