Adapted SpatialiteGeometryColumns model to spatialite >= 4

See also:
https://www.gaia-gis.it/fossil/libspatialite/wiki?name=switching-to-4.0
This commit is contained in:
Claude Paroz 2014-07-16 10:50:35 +02:00
parent 731f313d60
commit 19d8f2ebf4
1 changed files with 4 additions and 1 deletions

View File

@ -13,7 +13,10 @@ class SpatialiteGeometryColumns(models.Model):
"""
f_table_name = models.CharField(max_length=256)
f_geometry_column = models.CharField(max_length=256)
type = models.CharField(max_length=30)
if connection.ops.spatial_version[0] >= 4:
type = models.IntegerField(db_column='geometry_type')
else:
type = models.CharField(max_length=30)
coord_dimension = models.IntegerField()
srid = models.IntegerField(primary_key=True)
spatial_index_enabled = models.IntegerField()