Fixed RST syntax bug

This commit is contained in:
Simon Willison 2019-05-27 22:25:03 -07:00 committed by GitHub
commit 1e28eeee8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -521,7 +521,7 @@ By default the index will be named ``idx_{table-name}_{columns}`` - if you want
index_name="good_dogs_by_age"
)
You can create a unique index by passing ``unique=True``::
You can create a unique index by passing ``unique=True``:
.. code-block:: python