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

This commit is contained in:
Jakub K 2023-12-30 01:03:59 +01:00
parent 8f1b92cee0
commit 1b0f117899

View File

@ -30,7 +30,7 @@ class JobListing(models.Model):
content = models.TextField()
minsalary = models.IntegerField()
maxsalary = models.IntegerField()
requiresalary = models.BooleanField()
requiresalary = models.BooleanField(null=True, default=False)
webpage = models.CharField(max_length=255)
localization = models.CharField(max_length=255)
vat_number = models.CharField(max_length=10)
@ -39,7 +39,7 @@ class JobListing(models.Model):
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)
# company_logo = models.ImageField(upload_to='company_logos/')
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)
workFromHome = models.CharField(max_length=255)