Skip to content

Commit

Permalink
fix migration for mastery column in pokemon_move table
Browse files Browse the repository at this point in the history
  • Loading branch information
programgames committed Sep 30, 2024
1 parent 126d9d2 commit cd8f6da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokemon_v2/migrations/0017_pokemonmove_mastery.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='pokemonmove',
name='mastery',
field=models.IntegerField(default=None),
field=models.IntegerField(blank=True, null=True),
),
]

0 comments on commit cd8f6da

Please sign in to comment.