[Answer]-File does not exist error in django while updating a column in database

1👍

Replace following line:

s_p.update(picture_id=I_object.id)

with:

s_p.update(picture=I_object)

Leave a comment