Changeset 6381
- Timestamp:
- 09/19/07 20:48:47 (1 year ago)
- Files:
-
- django/trunk/docs/model-api.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/model-api.txt
r6378 r6381 294 294 .. _`strftime formatting`: http://docs.python.org/lib/module-time.html#l2h-1941 295 295 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 297 created as ``varchar(100)`` columns in your database. As with other fields, you 298 can change the maximum length using the ``max_length`` argument. 301 299 302 300 ``FilePathField`` … … 337 335 ``bar.gif``). 338 336 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 338 created as ``varchar(100)`` columns in your database. As with other fields, you 339 can change the maximum length using the ``max_length`` argument. 344 340 345 341 ``FloatField`` … … 374 370 .. _elsewhere: ../db-api/#get-foo-height-and-get-foo-width 375 371 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 373 created as ``varchar(100)`` columns in your database. As with other fields, you 374 can change the maximum length using the ``max_length`` argument. 375 381 376 382 377 ``IntegerField``
