Tagged Questions
0
votes
1answer
87 views
geodjango with south causes “duplicate collumn name error” with spatialight db
I have custom field for geodjango:
from django.contrib.gis.db import models as geomodels
class PointField(geomodels.PointField):
def formfield(self, **kwargs):
defaults = {
...
0
votes
0answers
100 views
GeoDjango — syncdb or south migration error
Anyone ever seen this error? My migration is failing :(
django.db.utils.DatabaseError: function addgeometrycolumn(unknown, unknown, integer, unknown, integer) is not unique
LINE 1: SELECT ...
0
votes
1answer
741 views
How do I successfully integrate a second database with Django South?
One of our clients needs to add some geolocation data to their
site. Since they already have a database setup without GIS extensions,
I decided to create a new database (with the GIS extensions), ...
1
vote
1answer
829 views
First steps with PostgreSQL + Django + South
Hi Stackoverflow people,
In the past, I always developed my Django projects locally with sqlite as database platform. Now, I wanted to move to PostgreSQL to take advantage of GIS features, but the ...