[Answer]-Django update field

1👍

You need to update field in the instance (not in the class) and call save() method of this instance.

language_version.language_code_disabled = False
language_version.save()

Leave a comment