You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@dan1229 encountered this issue the other day when implementing an ArrayField. Instantiating new models in the ArrayField failed because the models did not implement a clean() method. We should implement a default clean() method on the base Model class that returns the expected object so that this does not have to be redefined on child models.
The text was updated successfully, but these errors were encountered:
@dan1229 encountered this issue the other day when implementing an
ArrayField
. Instantiating new models in theArrayField
failed because the models did not implement aclean()
method. We should implement a defaultclean()
method on the baseModel
class that returns the expected object so that this does not have to be redefined on child models.The text was updated successfully, but these errors were encountered: