#9 feat(Sale): add external_id field.

This commit is contained in:
2025-07-19 17:28:47 -05:00
parent 62d39c97c0
commit 46e7181653
3 changed files with 20 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ class Customer(models.Model):
address = models.CharField(max_length=100, null=True, blank=True)
email = models.CharField(max_length=100, null=True, blank=True)
phone = models.CharField(max_length=100, null=True, blank=True)
external_id = models.CharField(max_length=100, null=True, blank=True)
def __str__(self):
return self.name