[Fixed]-Adding an extra field in a ModelSerializer is not working

1👍

I don’t think you need ExtensibleModelSerializer. Set the field to write_only:

password_confirmation = serializers.CharField(write_only=True, ...)

Leave a comment