[Answered ]-Django IntegrityError (1048, "Column 'item_id_id' cannot be null")

1👍

In you model the field is named item_id but in your ModelForm the field is named itemID. The field names should be the same.

Rename the fields in your ModelForm so they match the Model.

Leave a comment