Changes between Initial Version and Version 1 of Ticket #31261
- Timestamp:
- Feb 12, 2020, 12:53:03 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31261
- Property Resolution → needsinfo
- Property Status new → closed
- Property Summary Add support for defining Enum fields with dict, tuple, set and list values → Add support for defining models.Choices fields with dict, tuple, set and list values.
-
Ticket #31261 – Description
initial v1 7 7 8 8 {{{ 9 class MoonMissions( Enum):9 class MoonMissions(models.IntegerChoices): 10 10 APOLLO_10 = 1 11 11 APOLLO_11 = 2