Django

Code

Changeset 5560

Show
Ignore:
Timestamp:
06/30/07 15:58:36 (1 year ago)
Author:
adrian
Message:

Fixed some awkward wordings from docs/model-api.txt from [5519] and added 'new in Django development version' notes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/model-api.txt

    r5519 r5560  
    494494 
    495495.. note:: 
    496     Due to database limitations, when using the Oracle backend the 
    497     ``null=True`` option will be coerced for string-based fields that can 
    498     blank, and the value ``NULL`` will be stored to denote the empty string. 
     496    When using the Oracle database backend, the ``null=True`` option will 
     497    be coerced for string-based fields that can blank, and the value 
     498    ``NULL`` will be stored to denote the empty string. 
    499499 
    500500``blank`` 
     
    595595~~~~~~~~~~~~~~~~~ 
    596596 
    597 If this field is indexed, the name of the database tablespace to use for the 
    598 index. The default is the ``db_tablespace`` of the model, if any. If the 
    599 backend doesn't support tablespaces, this option is ignored. 
     597**New in Django development version** 
     598 
     599The name of the database tablespace to use for this field's index, if 
     600indeed this field is indexed. The default is the ``db_tablespace`` of 
     601the model, if any. If the backend doesn't support tablespaces, this 
     602option is ignored. 
    600603 
    601604``default`` 
     
    10111014``db_tablespace`` 
    10121015----------------- 
     1016 
     1017**New in Django development version** 
    10131018 
    10141019The name of the database tablespace to use for the model. If the backend