I would like to create a form for entering the date of birth and gender on the account creation screen.
How should I design the data?
How about managing the year, month, and day of birth as Integer type and storing them in the User collection?
The reason is that the date type does not accept numeric values from the drop-down.
I would also like to manage gender as a String type and store it in the User collection.
I thought about doing this with a custom data type, but decided against it because it didn't seem possible.