fix assertionerror on models
All checks were successful
continuous-integration/drone Build is passing
All checks were successful
continuous-integration/drone Build is passing
This commit is contained in:
parent
1b0f117899
commit
47fed892cf
@ -38,7 +38,7 @@ class JobListing(models.Model):
|
|||||||
status = models.CharField(max_length=1, choices=status_choices, default='W')
|
status = models.CharField(max_length=1, choices=status_choices, default='W')
|
||||||
status_paid = models.CharField(max_length=1, choices=paid_status, default='N')
|
status_paid = models.CharField(max_length=1, choices=paid_status, default='N')
|
||||||
# category = models.CharField(max_length=255, null=True, blank=True)
|
# 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)
|
image = models.CharField(max_length=255, null=True, blank=True)
|
||||||
experience_level = 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)
|
employmentType = models.CharField(max_length=255, null=True, blank=True)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user