You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RecruitmentPosition, on_delete=models.CASCADE, help_text='The position which is recruiting', related_name='applications'
328
330
)
329
-
recruitment=models.ForeignKey(Recruitment, on_delete=models.CASCADE, help_text='The recruitment that is recruiting', related_name='applications')
331
+
recruitment=models.ForeignKey(Recruitment, on_delete=models.CASCADE, null=True, help_text='The recruitment that is recruiting', related_name='applications')
330
332
user=models.ForeignKey(User, on_delete=models.CASCADE, help_text='The user that is applying', related_name='applications')
331
333
applicant_priority=models.PositiveIntegerField(null=True, blank=True, help_text='The priority of the application')
0 commit comments