Changes between Initial Version and Version 1 of Ticket #21426


Ignore:
Timestamp:
Nov 12, 2013, 8:48:59 AM (10 years ago)
Author:
Tim Graham
Comment:

The traceback is rather difficult to read with all the random unicode characters but the error basically looks like: 'field "geom_point" of the relation "shapefile_feature" already exists'.

What GIS database and version are you using?

I wonder if #20968 may be related.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21426 – Description

    initial v1  
    11the model is the following:
    2 
     2{{{
    33class Feature(models.Model):
    44    shapefile = models.ForeignKey(Shapefile)
     
    1313    def __unicode__(self):
    1414        return str(self.id)
    15 
     15}}}
    1616
    1717the error message on syncdb is the following (translated from french to english):
    18 
     18{{{
    1919c:\mygeosite\geodjango>python manage.py syncdb
    2020Syncing...
     
    3535
    3636Installed 0 object(s) from 0 fixture(s)
     37}}}
Back to Top