Django

Code

Changeset 6381

Show
Ignore:
Timestamp:
09/19/07 20:48:47 (1 year ago)
Author:
adrian
Message:

Fixed errors in docs/model-api.txt changes from [6378]

Files:

Legend:

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

    r6378 r6381  
    294294.. _`strftime formatting`: http://docs.python.org/lib/module-time.html#l2h-1941 
    295295 
    296 **New in development version:** 
    297  
    298 By default, file fields are created as ``varchar(100)`` database fields. Like 
    299 other fields, you can change the maximum length using the ``max_length`` 
    300 argument. 
     296**New in development version:**  By default, ``FileField`` instances are 
     297created as ``varchar(100)`` columns in your database. As with other fields, you 
     298can change the maximum length using the ``max_length`` argument. 
    301299 
    302300``FilePathField`` 
     
    337335``bar.gif``). 
    338336 
    339 **New in development version:**  
    340  
    341 By default, file fields are created as ``varchar(100)`` database fields. Like 
    342 other fields, you can change the maximum length using the ``max_length`` 
    343 argument. 
     337**New in development version:**  By default, ``FilePathField`` instances are 
     338created as ``varchar(100)`` columns in your database. As with other fields, you 
     339can change the maximum length using the ``max_length`` argument. 
    344340 
    345341``FloatField`` 
     
    374370.. _elsewhere: ../db-api/#get-foo-height-and-get-foo-width 
    375371 
    376 **New in development version:**  
    377  
    378 By default, file fields are created as ``varchar(100)`` database fields. Like 
    379 other fields, you can change the maximum length using the ``max_length`` 
    380 argument. 
     372**New in development version:**  By default, ``ImageField`` instances are 
     373created as ``varchar(100)`` columns in your database. As with other fields, you 
     374can change the maximum length using the ``max_length`` argument. 
     375 
    381376 
    382377``IntegerField``