-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
magsyg
committed
Dec 17, 2023
1 parent
ed59384
commit 5985b5e
Showing
2 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
backend/samfundet/migrations/0024_recruitmentposition_norwegian_applicants_only_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Generated by Django 5.0 on 2023-12-17 19:07 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("samfundet", "0023_billigevent_billigpricegroup_billigticketgroup_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="recruitmentposition", | ||
name="norwegian_applicants_only", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Is this position only for Norwegian applicants?", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="recruitmentposition", | ||
name="default_admission_letter_en", | ||
field=models.TextField( | ||
blank=True, | ||
help_text="Default admission letter for the position", | ||
null=True, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="recruitmentposition", | ||
name="long_description_en", | ||
field=models.TextField( | ||
blank=True, help_text="Long description of the position", null=True | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="recruitmentposition", | ||
name="short_description_en", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Short description of the position", | ||
max_length=100, | ||
null=True, | ||
), | ||
), | ||
] |