#9 feat(Customer): add address_external_id field.

This commit is contained in:
2025-07-19 19:04:58 -05:00
parent cf0f6dc4b5
commit 81e4c0bc0d
3 changed files with 20 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ class Customer(models.Model):
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)
address_external_id = models.CharField(max_length=100, null=True, blank=True)
def __str__(self):
return self.name