Opened 16 years ago
Last modified 16 years ago
#10114 closed
spaces are inserted for 'blank' fields — at Initial Version
Reported by: | wmstudio | Owned by: | nobody |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | 1.0 |
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 a model in which several fields are specified as follows:
lat_dec = models.FloatField(blank=True, null=True)
lon_dec = models.FloatField(blank=True, null=True)
lat_dms = models.CharField(max_length=9, blank=True, null=True)
lon_dms = models.CharField(max_length=10, blank=True, null=True)
In case of the CharFields, spaces are inserted into the database (PostgreSQL) when in the admin form the entry-fields are left blank. I found that out because I made some trigger procedures which update lat_dec and lon_dec when lat_dms and lon_dms (see model) are specified and vice versa. Now I made a workaround by adjusting the trigger procedure so it sets the fields to NULL when containing only spaces.