Changeset 9482
- Timestamp:
- 11/17/08 12:18:54 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/gis/db/backend/oracle/models.py
r8994 r9482 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 … … 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 django/trunk/django/contrib/gis/db/backend/postgis/models.py
r8994 r9482 24 24 25 25 class Meta: 26 app_label = 'gis' 26 27 db_table = 'geometry_columns' 27 28 … … 59 60 60 61 class Meta: 62 app_label = 'gis' 61 63 db_table = 'spatial_ref_sys' 62 64
