Changes between Initial Version and Version 1 of Ticket #34231, comment 3
- Timestamp:
- Dec 28, 2022, 8:20:23 AM (23 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34231, comment 3
initial v1 18 18 ~(Q(first_name=None) ^ Q(last_name=None)) 19 19 }}} 20 21 22 If you're not interested in this validation taking place, you'd prefer save attempts to crash instead with an `IntegrityError`, simply pass `validate_constraints=False` to `full_clean` just like you would have to disable the queries performed to validate unique constraints by passing `validate_unique=False`.