We have a bug with this model definition, forcing nullable
This commit is contained in:
parent
8dfdf35918
commit
10c07f472f
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ class UserInfo(models.Model):
|
||||||
address_region = models.CharField(max_length=255, default='')
|
address_region = models.CharField(max_length=255, default='')
|
||||||
address_postal_code = models.CharField(max_length=255, default='')
|
address_postal_code = models.CharField(max_length=255, default='')
|
||||||
address_country = models.CharField(max_length=255, default='')
|
address_country = models.CharField(max_length=255, default='')
|
||||||
updated_at = models.DateTimeField(auto_now=True)
|
updated_at = models.DateTimeField(auto_now=True, null=True)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def name(self):
|
def name(self):
|
||||||
|
|
Loading…
Reference in a new issue