+1 vote
in Django by
What can be used to validate all unique constraints on the model instead of individual field values?

select the correct answer from below options

a) Model.clean()

b) Model.clean_fields(exclude=None)

c) Model.full_clean()

d) Model.validate_unique(exclude=None)

1 Answer

0 votes
by
d) Model.validate_unique(exclude=None)

Related questions

0 votes
asked Jun 28, 2022 in Django by Robin
0 votes
asked Jun 25, 2022 in Django by sharadyadav1986
...