Opened 14 years ago
Closed 14 years ago
#14321 closed (duplicate)
IPAddressField inserted as empty string although null=True
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
I have these fields in a model:
ipaddr1 = models.IPAddressField() ipaddr2 = models.IPAddressField(blank=True, null=True)
When I "wrap" this model in a ModelForm, fill the form, and call
form.save(), empty ipaddr2 gets inserted as an empty string, causing database
errors for Postgres' inet type.
I believe Django shouldn't be disregarding null=true for an IPAddressField when dealing with Postgres.
Note:
See TracTickets
for help on using tickets.
Sorry for the dupe. Same problem as here.