Changes between Initial Version and Version 28 of Ticket #24342


Ignore:
Timestamp:
May 9, 2019, 8:32:58 AM (5 years ago)
Author:
Paolo Melchiorre
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24342

    • Property Needs documentation unset
    • Property Needs tests unset
    • Property Type UncategorizedNew feature
    • Property Version 1.7master
    • Property Triage Stage UnreviewedSomeday/Maybe
    • Property Summary Add an EnumField as standardAdd EnumField model/form fields
    • Property Cc frewsxcv andre@… Tom Forbes Krzysztof Szularz Olivier Tabone Kye Russell Semyon Pupkov Stefan Foulis Ryan Hiebert Safwan Rahman Sébastien Fievet Paolo Melchiorre added
  • Ticket #24342 – Description

    initial v28  
    1 Add support for an `EnumField` which is backed by the corresponding `enum` type if one exists in the database engine (eg. mysql, postgres), with a default implementation of CharField in other database types and mapped to instances of the `enum.Enum` (or `enum34.Enum` in python 2).
     1Add support for an `EnumField` which is backed by the corresponding `enum` type if one exists in the database engine (eg. mysql, postgres), with a default implementation of CharField in other database types and mapped to instances of the `enum.Enum`.
Back to Top