﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
26808	Support adding class based indexes from Meta class	Akshesh Doshi	Akshesh Doshi	"Now that class based indexes are for real and can be added via migration files using `AddIndex` operation, we should allow index addition from `Meta` class as well.

Users will then be able to create indexes by defining something like the following in their models:

{{{
#!python

    class Meta:
        indexes = [
            models.Index(fields=['foo', 'bar'], name='my_index_name_idx')
        ]

}}}"	New feature	closed	Database layer (models, ORM)	dev	Normal	fixed	db-indexes	emorley@…	Ready for checkin	1	0	0	0	0	0
