I need to add the required argument: on_delete = models.CASCADE
to the following code. Otherwise, I get the following
TypeError: __init__() missing 1 required positional argument: 'on_delete'.
How and where should I do this?
class FilerFileField(models.ForeignKey):
default_form_class = AdminFileFormField
default_model_class = File
def __init__(self, **kwargs):
# We hard-code the `to` argument for ForeignKey.__init__
dfl = get_model_label(self.default_model_class)
if "to" in kwargs.keys(): # pragma: no cover
old_to = get_model_label(kwargs.pop("to"))
if old_to != dfl:
msg = "%s can only be a ForeignKey to %s; %s passed" % (
self.__class__.__name__, dfl, old_to
)
warnings.warn(msg, SyntaxWarning)
kwargs['to'] = dfl
super(FilerFileField, self).__init__(**kwargs)
def formfield(self, **kwargs):
# This is a fairly standard way to set up some defaults
# while letting the caller override them.
defaults = {
'form_class': self.default_form_class,
}
try:
defaults['rel'] = self.remote_field
except AttributeError:
defaults['rel'] = self.rel
defaults.update(kwargs)
return super(FilerFileField, self).formfield(**defaults)
It would be in the last line super(FilerFileField, self).__init__(**kwargs)
of the __init__
function.
You can see that on_delete
is a required parameter of ForeignKey
class.
https://docs.djangoproject.com/en/2.2/ref/models/fields/#foreignkey
https://docs.djangoproject.com/en/2.2/ref/models/fields/#arguments
Something similar to super(FilerFileField, self).__init__(on_delete=models.CASCADE, **kwargs)
.