Changes between Version 48 and Version 49 of VersionOneFeatures


Ignore:
Timestamp:
Jan 14, 2007, 10:49:14 PM (17 years ago)
Author:
mir@…
Comment:

adding DecimalFields

Legend:

Unmodified
Added
Removed
Modified
  • VersionOneFeatures

    v48 v49  
    1818|| model inheritance || Malcolm  || Unclear      || started                           ||    ||
    1919|| windows installers|| ?        || No           || not started                       ||    ||
     20|| DecimalField    || adurdin    || Yes          || started                           ||    ||
    2021
    2122
     
    7677
    7778The latest description of the API and implementation details is in [http://groups.google.com/group/django-developers/browse_frm/thread/7d40ad373ebfa912/85244d55f259455d?lnk=gst&q=model+inheritance&rnum=4#85244d55f259455d this thread].
     79
     80=== DecimalFields ===
     81
     82models.FloatField would always return floats (not Decimals), and
     83introspection of DECIMAL columns would yield DecimalFields (not
     84FloatField).  The parameters to FloatField would also change (no
     85precision, etc.).
     86
     87See also [http://groups.google.com/group/django-developers/browse_thread/thread/852e0115b2535be9/dc496ed3a5d5429e#dc496ed3a5d5429e this thread].
Back to Top