﻿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
31248	Missing whitespace in SQL generated for PostGIS indexed with USING.	Hannes Ljungberg	Hannes Ljungberg	"Creating an index as:
{{{
class City(models.Model):
    point = models.PointField(geography=True)

    class Meta:
        index = Index(fields=[""point""])
}}}

Will generate the valid but not so pretty `CREATE INDEX` statement: 
{{{
CREATE INDEX ""geogapp_city_point_id"" ON ""geogapp_city""USING GIST (""point"")
}}}

The following would be expected:
{{{
CREATE INDEX ""geogapp_city_point_id"" ON ""geogapp_city"" USING GIST (""point"")
}}}
"	Cleanup/optimization	closed	GIS	dev	Normal	fixed			Accepted	1	0	0	0	0	0
