Changes between Initial Version and Version 1 of Ticket #21426
- Timestamp:
- Nov 12, 2013, 8:48:59 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21426 – Description
initial v1 1 1 the model is the following: 2 2 {{{ 3 3 class Feature(models.Model): 4 4 shapefile = models.ForeignKey(Shapefile) … … 13 13 def __unicode__(self): 14 14 return str(self.id) 15 15 }}} 16 16 17 17 the error message on syncdb is the following (translated from french to english): 18 18 {{{ 19 19 c:\mygeosite\geodjango>python manage.py syncdb 20 20 Syncing... … … 35 35 36 36 Installed 0 object(s) from 0 fixture(s) 37 }}}