diff --git a/jobposting/models.py b/jobposting/models.py index 9b7fde2..ec7542d 100644 --- a/jobposting/models.py +++ b/jobposting/models.py @@ -38,7 +38,7 @@ class JobListing(models.Model): status = models.CharField(max_length=1, choices=status_choices, default='W') status_paid = models.CharField(max_length=1, choices=paid_status, default='N') # category = models.CharField(max_length=255, null=True, blank=True) - expiration_date = models.DateField(null=True, blank=True) + expiration_date = models.DateTimeField(null=True, blank=True) image = models.CharField(max_length=255, null=True, blank=True) experience_level = models.CharField(max_length=255, null=True, blank=True) employmentType = models.CharField(max_length=255, null=True, blank=True)