Skip to content
Advertisement

Getting TypeError: __init__() missing 1 required positional argument: ‘on_delete’ when trying to add parent table after child table with entries

I have two classes in my sqlite database, a parent table named Categorie and the child table called Article. I created first the child table class and addes entries. So first I had this:

JavaScript

And after I have added parent table, and now my models.py looks like this:

JavaScript

So when I run python manage.py makemigrations <my_app_name>, I get this error:

JavaScript

I’ve seen some similar issues in stackoverflow, but it seems to not be the same problem: __init__() missing 1 required positional argument: ‘quantity’

Advertisement

Answer

You can change the property categorie of the class Article like this:

JavaScript

and the error should disappear.

Eventually you might need another option for on_delete, check the documentation for more details:

Arguments — Model field reference — Django documentation

As you stated in your comment, that you don’t have any special requirements for on_delete, you could use the option DO_NOTHING:

JavaScript
Advertisement