On Mon, 2007-04-23 at 19:14 -0700, Patrick Lin wrote: > Hi all, > > I would like to leverage the mysql multiple-column index to speed > up the query performance. I thought the unique-together might do > the trick, but its not. Do anybody have a model example which could > create multiple-column index? Thanks for the help!
Django doesn't create multi-column indexes (as you can see from looking in django/core/management.py). You will have to create these manually, which you could do using initial SQL files (see [1]) or by hand. [1] http://www.djangoproject.com/documentation/model-api/#database-backend-specific-sql-data Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---