Skip to content

Commit

Permalink
Search Enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
aishwary023 committed Jun 8, 2020
1 parent 3dee629 commit b200b7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendors/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Vendor(models.Model):
address = models.CharField(max_length=255)
city = models.CharField(max_length=255)
pincode = models.PositiveIntegerField(validators=[MaxValueValidator(999999)])
phone = PhoneNumberField(max_length=12)
phone = PhoneNumberField()
details = models.CharField(max_length=255)

def __str__(self):
Expand Down

0 comments on commit b200b7f

Please sign in to comment.