fix assertionerror on models
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Jakub K 2023-12-30 01:08:35 +01:00
parent 1b0f117899
commit 47fed892cf

View File

@ -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)