1
0
mirror of https://github.com/django/django.git synced 2025-06-01 17:49:12 +00:00
2015-02-06 08:16:28 -05:00

9 lines
333 B
Python

from django.contrib.gis.db.backends.base.features import BaseSpatialFeatures
from django.db.backends.postgresql_psycopg2.features import \
DatabaseFeatures as Psycopg2DatabaseFeatures
class DatabaseFeatures(BaseSpatialFeatures, Psycopg2DatabaseFeatures):
supports_3d_functions = True
supports_left_right_lookups = True