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'
330
329
)
331
-
recruitment=models.ForeignKey(Recruitment, on_delete=models.CASCADE, null=True, help_text='The recruitment that is recruiting', related_name='applications')
330
+
recruitment=models.ForeignKey(
331
+
Recruitment, on_delete=models.CASCADE, null=True, help_text='The recruitment that is recruiting', related_name='applications'
332
+
)
332
333
user=models.ForeignKey(User, on_delete=models.CASCADE, help_text='The user that is applying', related_name='applications')
333
334
applicant_priority=models.PositiveIntegerField(null=True, blank=True, help_text='The priority of the application')
0 commit comments