Skip to content

Commit

Permalink
changing the null value to true
Browse files Browse the repository at this point in the history
  • Loading branch information
Himan10 committed Jan 10, 2024
1 parent c5ad173 commit 45b27b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/jobs/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Meta:
job_type = models.CharField(max_length=80, choices=JOB_TYPE, null=False)
salary = models.DecimalField(max_digits=9, decimal_places=2)
qualifications = models.CharField(max_length=60, default=None, null=True)
vacency_position = models.IntegerField(default=None, null=False)
vacency_position = models.IntegerField(default=None, null=True)
industry = models.CharField(max_length=50, default=None, null=True),
category = models.CharField(max_length=20, default=None, null=True),
is_active = models.BooleanField(null=False)
Expand Down

0 comments on commit 45b27b3

Please sign in to comment.