﻿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
13967	GeoDjango always creates SPATIAL INDEXES when using MySQL	Simon Law	jbronn	"If you are using MySQL, with the following model, GeoDjango will always create a spatial index for the `point` field:

{{{
from django.contrib.gis.db import models


class Places(models.Model):
    point = models.PointField(spatial_index=False)
}}}

This is because `MySQLCreation.sql_indexes_for_field()` does not check if it should do the work, unlike the other backends.

Included is a patch."		closed	GIS	1.2		fixed		simon@…	Unreviewed	1	0	0	0	0	0
