Skip to content

Commit

Permalink
add 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 29, 2024
1 parent 9a327d6 commit 126d9d2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pokemon_v2/migrations/0017_pokemonmove_mastery.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.23 on 2024-09-22 08:32

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('pokemon_v2', '0016_typesprites'),
]

operations = [
migrations.AddField(
model_name='pokemonmove',
name='mastery',
field=models.IntegerField(default=None),
),
]

0 comments on commit 126d9d2

Please sign in to comment.