diff options
Diffstat (limited to 'ishtar_common/models_common.py')
-rw-r--r-- | ishtar_common/models_common.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ishtar_common/models_common.py b/ishtar_common/models_common.py index 4f3f54bea..79022acc6 100644 --- a/ishtar_common/models_common.py +++ b/ishtar_common/models_common.py @@ -2150,23 +2150,23 @@ class Address(BaseHistorizedItem): alt_country = models.CharField( _("Other address: country"), max_length=30, null=True, blank=True ) - phone = models.CharField(_("Phone"), max_length=18, null=True, blank=True) + phone = models.CharField(_("Phone"), max_length=32, null=True, blank=True) phone_desc = models.CharField( _("Phone description"), max_length=300, null=True, blank=True ) phone2 = models.CharField( - _("Phone description 2"), max_length=18, null=True, blank=True + _("Phone description 2"), max_length=32, null=True, blank=True ) phone_desc2 = models.CharField( _("Phone description 2"), max_length=300, null=True, blank=True ) - phone3 = models.CharField(_("Phone 3"), max_length=18, null=True, blank=True) + phone3 = models.CharField(_("Phone 3"), max_length=32, null=True, blank=True) phone_desc3 = models.CharField( _("Phone description 3"), max_length=300, null=True, blank=True ) raw_phone = models.TextField(_("Raw phone"), blank=True, default="") mobile_phone = models.CharField( - _("Mobile phone"), max_length=18, null=True, blank=True + _("Mobile phone"), max_length=32, null=True, blank=True ) email = models.EmailField(_("Email"), max_length=300, blank=True, null=True) alt_address_is_prefered = models.BooleanField( |