Ticket #9620: gis_app_labels.diff
File gis_app_labels.diff, 1.3 KB (added by , 16 years ago) |
---|
-
django/contrib/gis/db/backend/oracle/models.py
17 17 srid = models.IntegerField(primary_key=True) 18 18 # TODO: Add support for `diminfo` column (type MDSYS.SDO_DIM_ARRAY). 19 19 class Meta: 20 app_label = 'gis' 20 21 db_table = 'USER_SDO_GEOM_METADATA' 21 22 22 23 @classmethod … … 50 51 class Meta: 51 52 # TODO: Figure out way to have this be MDSYS.CS_SRS without 52 53 # having django's quoting mess up the SQL. 54 app_label = 'gis' 53 55 db_table = 'CS_SRS' 54 56 55 57 @property -
django/contrib/gis/db/backend/postgis/models.py
23 23 type = models.CharField(max_length=30) 24 24 25 25 class Meta: 26 app_label = 'gis' 26 27 db_table = 'geometry_columns' 27 28 28 29 @classmethod … … 58 59 proj4text = models.CharField(max_length=2048) 59 60 60 61 class Meta: 62 app_label = 'gis' 61 63 db_table = 'spatial_ref_sys' 62 64 63 65 @property