Support for fields that can be null/blank
Closed this issue · 1 comments
swistakm commented
Decide which approach is better:
- additional classes for fields that support null/blank
- additional
parameter(s)arguments(s) inBaseField
class that support null/blank - additional field class wrapper that adds such possibility (like:
field = AllowNull(StringField("foo'))
tomislater commented
The second approach looks good to me. Could you explain the first point? I think, I don't get what do you exactly mean. Thanks!