{{{
Creating test database for alias 'default'...
Failed to install index for map.OSMPlace model: column "point" does not
exist
}}}
It is correct the Table map_osmplace exists without a point column.
{{{
from django.contrib.gis.db import models
point = models.PointField(db_index=True)
}}}
Another table without an index on the point field contains the point
column.
--
Ticket URL: <https://code.djangoproject.com/ticket/20759>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* needs_docs: => 0
* resolution: => duplicate
* needs_tests: => 0
* needs_better_patch: => 0
Comment:
Same issue as #20758
--
Ticket URL: <https://code.djangoproject.com/ticket/20759#comment:1>