This commit is contained in:
Mohamad Jenbaz 2025-02-26 14:19:27 +01:00
parent 3b618dd791
commit 1f4ad77acc

View File

@ -2,7 +2,7 @@ from django.db import models
class ExcelEntry(models.Model):
name = models.CharField(max_length=100)
age = models.IntegerField()
age = models.IntegerField()
email = models.EmailField()
date_joined = models.DateField(auto_now_add=True)