Skip to content

Commit

Permalink
fix: migration issue on postgres (#113)
Browse files Browse the repository at this point in the history
Fix migration issue when installing from scratch with postgres.
  • Loading branch information
alubbock authored Mar 9, 2025
1 parent e085559 commit 5b074d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ class Migration(migrations.Migration):
]

operations = [
migrations.AlterField(
model_name="antigen",
name="short_name",
field=models.CharField(max_length=32),
),
migrations.RenameField(
model_name="antigen",
old_name="short_name",
Expand Down
1 change: 1 addition & 0 deletions backend/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ extend-ignore =
F722,
exclude =
migrations
.venv

[pydocstyle]
convention = google
Expand Down

0 comments on commit 5b074d2

Please sign in to comment.