Changeset 9485
- Timestamp:
- 11/17/08 12:47:01 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/releases/1.0.X/django/contrib/gis/db/backend/oracle/models.py
r9483 r9485 18 18 # TODO: Add support for `diminfo` column (type MDSYS.SDO_DIM_ARRAY). 19 19 class Meta: 20 app_label = 'gis'21 20 db_table = 'USER_SDO_GEOM_METADATA' 22 21 … … 52 51 # TODO: Figure out way to have this be MDSYS.CS_SRS without 53 52 # having django's quoting mess up the SQL. 54 app_label = 'gis'55 53 db_table = 'CS_SRS' 56 54 django/branches/releases/1.0.X/django/contrib/gis/db/backend/postgis/models.py
r9483 r9485 24 24 25 25 class Meta: 26 app_label = 'gis'27 26 db_table = 'geometry_columns' 28 27 … … 60 59 61 60 class Meta: 62 app_label = 'gis'63 61 db_table = 'spatial_ref_sys' 64 62
