Add migrate

This commit is contained in:
cosmos
2024-10-26 17:22:58 -05:00
parent 5910c0c227
commit 83f3bbdc85
2 changed files with 19 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ from datetime import datetime
class Customer(models.Model):
name = models.CharField(max_length=100, default=None, null=False, blank=False)
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)