This commit is contained in:
behruz-dev
2025-09-07 21:18:46 +05:00
parent 25b885e111
commit e56bf49321
4 changed files with 25 additions and 7 deletions

View File

@@ -23,7 +23,6 @@ class Order(BaseModel):
delivery_type = models.CharField(max_length=200, choices=DELIVERY_TYPE, null=True)
delivery_price = models.PositiveBigIntegerField(default=0)
contact_number = models.CharField(max_length=15, null=True, blank=True)
address = models.TextField(null=True, blank=True)
comment = models.CharField(max_length=500, null=True, blank=True)
name = models.CharField(max_length=200, null=True, blank=True)