web/lib/django/contrib/gis/models.py
author ymh <ymh.work@gmail.com>
Wed, 02 Jun 2010 18:57:35 +0200
changeset 38 77b6da96e6f1
permissions -rw-r--r--
update django

from django.db import connection

if (hasattr(connection.ops, 'spatial_version') and
    not connection.ops.mysql):
    # Getting the `SpatialRefSys` and `GeometryColumns`
    # models for the default spatial backend.  These
    # aliases are provided for backwards-compatibility.
    SpatialRefSys = connection.ops.spatial_ref_sys()
    GeometryColumns = connection.ops.geometry_columns()