Django

Code

Changeset 9484

Show
Ignore:
Timestamp:
11/17/08 12:42:48 (2 months ago)
Author:
jbronn
Message:

Reverted r9480 -- the patch broke the Oracle spatial backend.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/gis/db/backend/oracle/models.py

    r9482 r9484  
    1818    # TODO: Add support for `diminfo` column (type MDSYS.SDO_DIM_ARRAY). 
    1919    class Meta: 
    20         app_label = 'gis' 
    2120        db_table = 'USER_SDO_GEOM_METADATA' 
    2221 
     
    5251        # TODO: Figure out way to have this be MDSYS.CS_SRS without 
    5352        #  having django's quoting mess up the SQL. 
    54         app_label = 'gis' 
    5553        db_table = 'CS_SRS' 
    5654 
  • django/trunk/django/contrib/gis/db/backend/postgis/models.py

    r9482 r9484  
    2424 
    2525    class Meta: 
    26         app_label = 'gis' 
    2726        db_table = 'geometry_columns' 
    2827 
     
    6059 
    6160    class Meta: 
    62         app_label = 'gis' 
    6361        db_table = 'spatial_ref_sys' 
    6462