mirror of
https://github.com/django/django.git
synced 2025-03-10 17:32:41 +00:00
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:
parent
731f313d60
commit
19d8f2ebf4
@ -13,6 +13,9 @@ class SpatialiteGeometryColumns(models.Model):
|
||||
"""
|
||||
f_table_name = models.CharField(max_length=256)
|
||||
f_geometry_column = models.CharField(max_length=256)
|
||||
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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user