From b5eddde09523bd55cde1cf8e22d46d3f594503d7 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Sun, 22 Sep 2013 11:11:02 -0300 Subject: [PATCH] [1.5.x] Reference Meta.index_together in DB performance guide. 9dc45efeba from master. --- docs/topics/db/optimization.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/topics/db/optimization.txt b/docs/topics/db/optimization.txt index c1459ae2470..9e3c360008a 100644 --- a/docs/topics/db/optimization.txt +++ b/docs/topics/db/optimization.txt @@ -38,7 +38,9 @@ Use standard DB optimization techniques * Indexes. This is a number one priority, *after* you have determined from profiling what indexes should be added. Use - :attr:`django.db.models.Field.db_index` to add these from Django. + :attr:`django.db.models.Field.db_index` or + :attr:`Meta.index_together ` to add + these from Django. * Appropriate use of field types.