Skip to content

Commit

Permalink
rename insterad of removing + creating
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikskog committed Sep 19, 2024
1 parent 31e8294 commit 99da9f4
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ class Migration(migrations.Migration):
]

operations = [
migrations.RemoveField(
migrations.RenameField(
model_name="careeropportunity",
name="deadline_asap",
old_name="deadline_asap",
new_name="rolling_admission",
),
migrations.AddField(
migrations.AlterField(
model_name="careeropportunity",
name="rolling_admission",
field=models.BooleanField(
Expand Down

0 comments on commit 99da9f4

Please sign in to comment.